YouTube Recommendation Blocker

YouTube Recommendation Blocker

[OPEN SOURCE] Blocks YouTube recommendations on the front page and on the side of the video player, as well as the comments section

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Recommendation Blocker",
  "description": "[OPEN SOURCE] Blocks YouTube recommendations on the front page and on the side of the video player, as well as the comments section",
  "version": "2.1",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "injection.js"
      ],
      "run_at": "document_start"
    }
  ]
}