Shorts blocker for Youtube

Shorts blocker for Youtube

Block annoying YT Shorts. Block Shorts in feed, section icon in left sidebar. Play shorts as it was simple video in default player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "1.1.4",
  "action": {
    "default_popup": "src/layouts/popup.html",
    "default_icon": "icons/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "src/js/contentScript.js"
      ],
      "css": [
        "/main.css"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "src/js/serviceWorker.js",
    "type": "module"
  },
  "icons": {
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}