Examine source code of YT Ad Silencer

Inspect and view changes in YT Ad Silencer 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YT Ad Silencer",
  "description": "Mute YouTube Ads",
  "version": "1.1",
  "manifest_version": 3,
  "permissions": [
    "webNavigation",
    "storage"
  ],
  "background": {
    "service_worker": "checklicense.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "removeSound.js"
      ]
    }
  ],
  "icons": {
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup.html"
  }
}