NetFlex

NetFlex

NetFlex is a light chrome extension that remove movies chosen by you from Netflix browse page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NetFlex",
  "description": "NetFlex is a light chrome extension that remove movies chosen by you from Netflix browse page",
  "version": "0.4",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "markup.js",
        "storage.js",
        "message.js",
        "netflex.js"
      ],
      "css": [
        "netflex.css"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "19": "images/icon_19.png",
      "38": "images/icon_38.png"
    },
    "default_popup": "popup.html",
    "default_title": "NetFlex"
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}