Streaming Party

Streaming Party

Sync prime, hotstar and netflix videos with friends

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Streaming Party",
  "version": "1.0.4",
  "description": "Sync prime, hotstar and netflix videos with friends",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "page": "index.html#/event-page"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.primevideo.com/*"
      ],
      "js": [
        "content-script/content-prime.js"
      ]
    },
    {
      "matches": [
        "https://*.hotstar.com/*"
      ],
      "js": [
        "content-script/content-hotstar.js"
      ]
    },
    {
      "matches": [
        "https://*.netflix.com/*"
      ],
      "js": [
        "content-script/content-netflix.js"
      ]
    },
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "content-script/content-youtube.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "19": "icon.png",
      "38": "icon.png"
    },
    "default_title": "Open popup!",
    "default_popup": "index.html#/popup"
  },
  "content_security_policy": "script-src 'self' https://streaming-party-007.herokuapp.com/ https://www.googletagmanager.com/ https://ssl.google-analytics.com/ga.js; object-src 'self'",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  }
}