No Youtube Shorts w/ Desktop UI

No Youtube Shorts w/ Desktop UI

Automatically disables the Youtube shorts from the home page and play the shorts with Desktop UI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "No Youtube Shorts w/ Desktop UI",
  "version": "1.1.0",
  "description": "Automatically disables the Youtube shorts from the home page and play the shorts with Desktop UI",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "action": {
    "default_title": "No Youtube Shorts w/ Desktop UI",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "notifications"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}