Examine source code of Invidious Redirect - Block YT

Inspect and view changes in Invidious Redirect - Block YT 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": "Invidious replacement - Block YouTube",
  "version": "1.0",
  "description": "Blocks all YouTube URLs from loading and redirects them to a chosen Invidious instance.",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icons/border-48.png"
    }
  },
  "icons": {
    "48": "icons/border-48.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{db31563f-2c19-4059-8fb7-646f980ca55d}"
    }
  }
}