Super Netflix

Super Netflix

Change video quality, Control video speed, Upload custom subtitles and much more - Make Your Experience on Netflix More Enjoyable.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Super Netflix",
  "version": "3.1.0.2811",
  "description": "Change video quality, Control video speed, Upload custom subtitles and much more - Make Your Experience on Netflix More Enjoyable.",
  "icons": {
    "128": "cosmetic/img/logo.png"
  },
  "browser_action": {
    "default_icon": "cosmetic/img/logo.png",
    "default_title": "Super Netflix\n\nClick here for Options",
    "default_popup": "options.html"
  },
  "permissions": [
    "*://*.netflix.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "js": [
        "starter.js"
      ],
      "css": [
        "cosmetic/player.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "funcs/*",
    "cosmetic/*"
  ],
  "manifest_version": 2
}