WeFlix

WeFlix

Watch Netflix in sync with your friends remotely.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WeFlix",
  "homepage_url": "https://weflix.app",
  "description": "__MSG_extDesc__",
  "version": "1.0.0",
  "default_locale": "fr",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "WeFlix",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "/css/*",
    "/img/*"
  ],
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}