Examine source code of Mute Tabs

Inspect and view changes in Mute Tabs 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",
  "manifest_version": 2,
  "name": "Mute Tabs",
  "version": "1.2",
  "description": "This extension enables mute/unmute for all tabs in Google Chrome.",
  "icons": {
    "16": "images/sound-16.png",
    "48": "images/sound-48.png",
    "128": "images/sound-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/sound-19.png",
      "38": "images/sound-38.png"
    },
    "default_title": "Mute-Unmute"
  },
  "permissions": [
    "storage"
  ]
}