Netfix

Netfix

Netfix removes the auto playing previews on Netflix.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "javascripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "javascripts/netfix.js"
      ],
      "matches": [
        "https://www.netflix.com/*"
      ]
    }
  ],
  "description": "Netfix removes the auto playing previews on Netflix.",
  "icons": {
    "16": "images/icon16.png",
    "38": "images/icon38.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2,
  "name": "Netfix",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "https://*.nflxvideo.net/*",
    "https://www.netflix.com/*",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "short_name": "Netfix",
  "version": "0.3.0"
}