Examine source code of Mute Tab

Inspect and view changes in Mute Tab 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": "Mute Tab",
  "version": "1.5",
  "description": "Restores the 'Mute Tab' functionality of versions prior to Chrome 71.",
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "offscreen",
    "storage"
  ],
  "icons": {
    "16": "images/16_u_white.png",
    "48": "images/48_u_white.png",
    "128": "images/128_u_white.png"
  },
  "action": {
    "default_title": "Mute Tab Extension"
  },
  "manifest_version": 3
}