Hide Youtube Reccomendations

Hide Youtube Reccomendations

Remove YouTube homepage related videos feed, recommended sidebar, user comments. it is usefull to help you focus in your work

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide Youtube Reccomendations",
  "version": "1.2",
  "description": "Remove YouTube homepage related videos feed, recommended sidebar, user comments. it is usefull to help you focus in your work",
  "manifest_version": 3,
  "incognito": "split",
  "browser_action": {
    "default_popup": "index.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ]
}