Sinc - Watch Netflix Together

Sinc - Watch Netflix Together

Sinc allows you and others to watch Netflix together. It offers a group call functionality so you can chat while watching.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sinc - Watch Netflix Together",
  "version": "1.4.3",
  "description": "Sinc allows you and others to watch Netflix together. It offers a group call functionality so you can chat while watching.",
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "src/images/ico/16x16.png",
    "48": "src/images/ico/48x48.png",
    "128": "src/images/ico/128x128.png"
  },
  "background": {
    "scripts": [
      "src/js/libs/socket.io.js",
      "src/js/config.js",
      "src/js/background/variables.background.js",
      "src/js/shared/utility.shared.js",
      "src/js/background/utility.background.js",
      "src/js/background/handleChromeEvents.background.js",
      "src/js/background/handleContentScriptMessage.background.js",
      "src/js/background/handleSidebarMessage.background.js",
      "src/js/background/handleServerMessage.background.js",
      "src/js/background/main.background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "src/index.html",
    "src/js/contentscript/inject/toggleSidebar.contentscript.js",
    "src/js/contentscript/inject/loader.contentscript.js",
    "src/js/contentscript/inject/detectscripts/netflix.detect.contentscript.js"
  ],
  "content_scripts": [
    {
      "js": [
        "src/js/libs/toastify.js",
        "src/js/contentscript/main.contentscript.js"
      ],
      "css": [
        "src/css/libs/toastify.css",
        "src/css/inject.css",
        "src/css/loader.css"
      ],
      "matches": [
        "http://*.netflix.com/*",
        "https://*.netflix.com/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://rtcmulticonnection.herokuapp.com/ https://kit.fontawesome.com/65dc67808d.js; object-src 'self'",
  "manifest_version": 2
}