Examine source code of No Shorts Video

Inspect and view changes in No Shorts Video source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "No Shorts Video",
  "version": "0.1.0",
  "author": "Vortech",
  "description": "Boost productivity by blocking Shorts & Reels. Redirects Shorts, hides distractions, and offers one-click customizable blocking.",
  "permissions": [
    "storage",
    "scripting",
    "webRequest",
    "webRequestBlocking",
    "*://*.youtube.com/*",
    "*://*.instagram.com/*"
  ],
  "background": {
    "scripts": [
      "js/browser-polyfill.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.instagram.com/*"
      ],
      "js": [
        "js/browser-polyfill.min.js",
        "js/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "noshorts@vortech",
      "strict_min_version": "91.0"
    }
  },
  "icons": {
    "16": "logos/16.png",
    "32": "logos/32.png",
    "48": "logos/48.png",
    "128": "logos/128.png"
  }
}