Youtube Shorts Cleaner

Youtube Shorts Cleaner

Remove all the Shorts videos from the Youtube thread

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Youtube Shorts Cleaner",
  "version": "1.0.2",
  "description": "Remove all the Shorts videos from the Youtube thread",
  "author": "Maxime Verdy",
  "icons": {
    "16": "./images/16.png",
    "32": "./images/32.png",
    "48": "./images/48.png",
    "128": "./images/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ]
}