Netflix TV

Netflix TV

Turns Netflix into TV mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Netflix TV",
  "description": "Turns Netflix into TV mode.",
  "version": "1.0.1",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "background": {
    "persistent": false,
    "matches": [
      "*://*.netflix.com/*"
    ],
    "scripts": [
      "js/common.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "js": [
        "js/common.js",
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "*://*.netflix.com/*",
    "*://*.thisisanalphanumeric.xyz/*"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Netflix TV Settings"
  }
}