Stop recommending YouTube

Stop recommending YouTube

Stops recommended content from showing up on YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Stop recommending YouTube",
  "version": "1.0.0",
  "description": "Stops recommended content from showing up on YouTube.",
  "action": {
    "default_popup": "hello.html"
  },
  "icons": {
    "16": "images/icon/no-recommend-16.png",
    "32": "images/icon/no-recommend-32.png",
    "48": "images/icon/no-recommend-48.png",
    "128": "images/icon/no-recommend-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/youtube-override.css"
      ]
    }
  ]
}