Watch Netflix Together

Watch Netflix Together

Effortlessly watch Netflix together!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Watch Netflix Together",
  "version": "1.2.18",
  "manifest_version": 2,
  "description": "Effortlessly watch Netflix together!",
  "homepage_url": "http://watchnetflixtogether.com",
  "icons": {
    "16": "icons/icon-16.png",
    "19": "icons/icon-19.png",
    "38": "icons/icon-38.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  },
  "browser_action": {
    "default_title": "Watch Netflix Together",
    "default_popup": "popup.html"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "*://*.netflix.com/",
    "*://*.watchnetflixtogether.com/",
    "cookies"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://*.netflix.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://*.watchnetflixtogether.com/*"
      ],
      "js": [
        "js/wnt-content.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.netflix.com/*"
    ]
  },
  "web_accessible_resources": [
    "js/web-page.js"
  ]
}