Transflixed

Transflixed

Add translations to netflix subtitles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Transflixed",
  "version": "0.0.0.1",
  "manifest_version": 2,
  "description": "Add translations to netflix subtitles",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "css": [],
      "js": [
        "transfixed.js"
      ],
      "matches": [
        "*://*.netflix.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "19": "images/iconOff19.png",
      "38": "images/iconOff38.png"
    }
  },
  "web_accessible_resources": [
    "content.js",
    "worker.js",
    "style.css"
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "notifications"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.netflix.com/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}