Youtube-shorts block

Youtube-shorts block

Play the Youtube shorts video as if it were a normal video. and hide "shorts"tab and videos (optional).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "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"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "32": "icons/icon32.png",
      "64": "icons/icon64.png",
      "128": "icons/icon128.png"
    },
    "default_title": "Youtube-shorts block",
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{34daeb50-c2d2-4f14-886a-7160b24d66a4}"
    }
  }
}