Netflix Radio

Netflix Radio

Add television channels to Netflix

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 Radio",
  "short_name": "Netflix Radio",
  "description": "Add television channels to Netflix",
  "version": "1.3",
  "author": "goatmobile",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://netflix.com/*",
        "*://www.netflix.com/*"
      ],
      "js": [
        "library.js",
        "channels.js",
        "main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "images/*.jpg"
  ],
  "permissions": [
    "activeTab",
    "https://netflix.com/*"
  ]
}