Netflix Recommendation Ignore

Netflix Recommendation Ignore

This extension allows you to ignore movies in the Netflix recommendation algorithm.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Recommendation Ignore",
  "description": "This extension allows you to ignore movies in the Netflix recommendation algorithm.",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "management",
    "storage"
  ],
  "host_permissions": [
    "https://www.netflix.com/"
  ],
  "icons": {
    "16": "/images/icon-16.png",
    "32": "/images/icon-32.png",
    "48": "/images/icon-48.png",
    "128": "/images/icon-128.png"
  },
  "action": {
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/contentScriptMain.js"
      ],
      "world": "MAIN",
      "matches": [
        "*://www.netflix.com/*"
      ]
    },
    {
      "js": [
        "scripts/contentScriptIsolated.js"
      ],
      "matches": [
        "*://www.netflix.com/*"
      ]
    }
  ]
}