ytb not-interested button

ytb not-interested button

add do-not-interest button to video.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ytb not-interested button",
  "description": "add do-not-interest button to video.",
  "version": "0.1.4",
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "add_not_interested.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "ic_not_interested_16.png",
    "32": "ic_not_interested_32.png",
    "48": "ic_not_interested_48.png",
    "128": "ic_not_interested_128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "webNavigation",
    "scripting"
  ],
  "host_permissions": [
    "https://www.youtube.com/"
  ]
}