Youtube-shorts block

Youtube-shorts block

Play the Youtube shorts video as if it were a normal video.

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 block",
  "version": "1.4.1",
  "description": "__MSG_ext_desc__",
  "default_locale": "en",
  "icons": {
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://m.youtube.com/*"
      ],
      "all_frames": true,
      "js": [
        "main.js"
      ],
      "css": [
        "main.css"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "32": "icons/icon32.png",
      "64": "icons/icon64.png",
      "128": "icons/icon128.png"
    },
    "default_title": "Youtube-shorts block",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/to_normal.svg"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ]
}