Learn Languages with Netflix

Learn Languages with Netflix

Learn Languages with netflix. This extension will show Subtitles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Learn Languages with Netflix",
  "description": "Learn Languages with netflix. This extension will show Subtitles",
  "version": "1.6",
  "name": "Learn Languages with Netflix",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "https://www.netflix.com/watch/*",
    "https://assets.nflxext.com/*"
  ],
  "background": {
    "scripts": [
      "js/background.min.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon-gray.png",
    "default_popup": "settings.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "128": "icons/icon128.png",
    "512": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "browser_action/js/jquery.min.js",
        "js/content.min.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://js.stripe.com/v3/; object-src 'self'",
  "externally_connectable": {
    "matches": [
      "https://www.netflix.com/*"
    ]
  },
  "web_accessible_resources": [
    "js/nflxmultisubs.min.js"
  ]
}