Get Netflix

Get Netflix

Extension for Netflix to skip intros, recaps, start next movie/episode in faster pace and many more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_description__",
  "version": "1.1.1",
  "author": "__MSG_author__",
  "offline_enabled": false,
  "icons": {
    "16": "images/netflex.png",
    "48": "images/netflex.png",
    "128": "images/netflex.png"
  },
  "browser_action": {
    "default_icon": "images/netflex.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.netflix.com/*"
      ],
      "js": [
        "scripts/jquery.js",
        "scripts/global.js",
        "scripts/vars.js",
        "scripts/assistant.js",
        "scripts/rating.js",
        "scripts/fireworks.js",
        "scripts/init.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "background": {
    "scripts": [
      "scripts/jquery.js",
      "scripts/global.js",
      "scripts/vars.js",
      "scripts/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "*://www.netflix.com/*",
    "storage"
  ],
  "web_accessible_resources": [
    "images/netflex.png",
    "images/loader.gif",
    "images/options.png"
  ]
}