Netflix Toggle English Subtitles

Netflix Toggle English Subtitles

Press V key to toggle English subtitles on Netflix

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Netflix Toggle English Subtitles",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Press V key to toggle English subtitles on Netflix",
  "permissions": [
    "https://www.netflix.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "js/utils.js",
        "js/index.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "minimum_chrome_version": "31",
  "update_url": "https://clients2.google.com/service/update2/crx"
}