Netflix Color Plus

Netflix Color Plus

Customize the look of Netflix! Plus extra features for a better user experience!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Netflix Color Plus",
  "description": "Customize the look of Netflix! Plus extra features for a better user experience!",
  "version": "2.5.1",
  "icons": {
    "16": "icons/netflix-color-plus-16.png",
    "48": "icons/netflix-color-plus-48.png",
    "128": "icons/netflix-color-plus-128.png"
  },
  "background": {
    "service_worker": "assets/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "content_scripts/content_script.js"
      ]
    }
  ],
  "action": {
    "default_popup": "options_popup/options_popup.html",
    "default_icon": {
      "16": "icons/netflix-color-plus-16.png",
      "48": "icons/netflix-color-plus-48.png",
      "128": "icons/netflix-color-plus-128.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "resources": [
        "css/*"
      ]
    }
  ]
}