VodSync.tv - Twitch Player Extension

VodSync.tv - Twitch Player Extension

Effortlessly match the exact moment in the VOD or clip you are watching with another streamer's perspective.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "VodSync.tv - Twitch Player Extension",
  "version": "1.0",
  "icons": {
    "16": "assets/icons/favicon-16.png",
    "32": "assets/icons/favicon-32.png",
    "48": "assets/icons/favicon-48.png",
    "128": "assets/icons/favicon-128.png"
  },
  "description": "Effortlessly match the exact moment in the VOD or clip you are watching with another streamer's perspective.",
  "homepage_url": "https://vodsync.tv",
  "short_name": "VodSync",
  "permissions": [
    "https://*.vodsync.tv/*"
  ],
  "__chrome|opera|edge|dev__content_security_policy": {
    "extension_pages": "script-src 'self' http://localhost:8097; object-src 'self'"
  },
  "__chrome|opera|edge|prod__content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "__firefox|dev__content_security_policy": "script-src 'self' http://localhost:8097; object-src 'self'",
  "__firefox|prod__content_security_policy": "script-src 'self'; object-src 'self'",
  "author": "VodSync.Tv",
  "minimum_chrome_version": "88",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/favicon-16.png",
      "32": "assets/icons/favicon-32.png",
      "48": "assets/icons/favicon-48.png",
      "128": "assets/icons/favicon-128.png"
    },
    "default_title": "vodsync",
    "chrome_style": false
  },
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://twitch.tv/*",
        "https://twitch.tv/*",
        "http://clips.twitch.tv/*",
        "https://clips.twitch.tv/*",
        "http://www.twitch.tv/*",
        "https://www.twitch.tv/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ],
      "css": [
        "css/contentScript.css"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}