Examine source code of YouTube Block Music

Inspect and view changes in YouTube Block Music 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": 3,
  "name": "YouTube Block Music",
  "version": "0.1",
  "description": "Block music videos from YouTube. No more distracting music.",
  "icons": {
    "48": "icons/border-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.youtu.be/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "ytblockmusic@hanz.internet"
    }
  }
}