Remove YouTube Recommended Video's 2024

Remove YouTube Recommended Video's 2024

Block all distraction on YouTube like (Comments,related Videos, homepage, trending, tabs, searchbar, trending and many other)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Remove YouTube Recommended Video's 2024",
  "short_name": "EAYRV",
  "version": "1.4",
  "manifest_version": 3,
  "description": "Block all distraction on YouTube like (Comments,related Videos, homepage, trending, tabs, searchbar, trending and many other)",
  "icons": {
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "action": {
    "default_icon": "icons/128.png",
    "default_title": "EAYRV",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "/style.css",
        "css/jquery-confirm.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/sweetAlert.min.js",
        "js/jquery-confirm.js",
        "js/script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  }
}