Netflix Helper

Netflix Helper

This Netflix extension to control volume with the mouse wheel, and auto skip intro.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Helper",
  "version": "2.1.0",
  "manifest_version": 3,
  "description": "This Netflix extension to control volume with the mouse wheel, and auto skip intro.",
  "homepage_url": "https://chrome.google.com/webstore/detail/netflix-helper/mlfdbphlfojgfeepjojcalginhedfpnk",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_icon": "icons/icon128.png",
    "default_title": "Netflix Helper UI",
    "default_popup": "src/popup/public/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "src/backend/netflixHelper.js"
      ]
    }
  ],
  "host_permissions": [
    "*://*.netflix.com/"
  ],
  "permissions": [
    "storage",
    "tabs"
  ]
}