Removes Recommend Videos on Youtube

Removes Recommend Videos on Youtube

A distraction free YouTube experience where all the recommend Youtube Videos are removed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.1",
  "manifest_version": 3,
  "minimum_chrome_version": "90",
  "name": "Removes Recommend Videos on Youtube",
  "icons": {
    "128": "icons/icon128.png"
  },
  "description": "A distraction free YouTube experience where all the recommend Youtube Videos are removed.",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content_script.js"
      ],
      "matches": [
        "https://www.youtube.com/*",
        "https://m.youtube.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "https://www.youtube.com/*",
    "https://m.youtube.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/youtube.js"
      ],
      "matches": [
        "https://www.youtube.com/*",
        "https://m.youtube.com/*"
      ]
    }
  ]
}