Prime Party

Prime Party

Watch Amazon Prime Video in sync with your friends using Amazon Prime Watch Party

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "1.0.1",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "action": {
    "default_icon": "img/128.png",
    "default_title": "__MSG_name__",
    "default_popup": "popup/index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.primevideo.com/*",
        "http://*.primevideo.com/*"
      ],
      "js": [
        "content/index.js",
        "content/videoController.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content/contentScript.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.primewatchparty.com/*"
      ],
      "js": [
        "primevideo.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/contentScript.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    },
    {
      "resources": [
        "primevideo.js"
      ],
      "matches": [
        "https://www.primewatchparty.com/*"
      ]
    },
    {
      "resources": [
        "chat/index.html",
        "content/index.js",
        "content/videoController.js"
      ],
      "matches": [
        "https://*.primevideo.com/*",
        "http://*.primevideo.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}