Mute Tabs

Mute Tabs

Allows you to mute and unmute all tabs with a click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/sound_on_19.png",
      "38": "images/sound_on_38.png"
    },
    "default_title": "Mute-Unmute"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://www.google-analytics.com https://apis.google.com https://ajax.googleapis.com; style-src 'self' ; connect-src *; object-src 'self' ",
  "description": "Allows you to mute and unmute all tabs with a click",
  "icons": {
    "16": "images/sound_on_16.png",
    "48": "images/sound_on_48.png",
    "128": "images/sound_on_128.png"
  },
  "manifest_version": 2,
  "name": "Mute Tabs",
  "permissions": [
    "alarms",
    "http://*/*",
    "https://*/*",
    "storage",
    "tabs",
    "unlimitedStorage",
    "webRequest",
    "webRequestBlocking",
    "notifications"
  ],
  "version": "1.8.0.2"
}