Clever Mute

Clever Mute

This extension mutes all sites by default. If a site tries to play any sound you'll be notified so you can decide what to do

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Clever Mute",
  "short_name": "CleverMute",
  "description": "This extension mutes all sites by default. If a site tries to play any sound you'll be notified so you can decide what to do",
  "version": "0.5.1",
  "browser_action": {
    "default_icon": "resources/shared/images/muted_icon_128.png",
    "default_title": "Enable/disable website audio"
  },
  "icons": {
    "16": "resources/shared/images/muted_icon_16.png",
    "32": "resources/shared/images/muted_icon_32.png",
    "48": "resources/shared/images/muted_icon_48.png",
    "128": "resources/shared/images/muted_icon_128.png"
  },
  "background": {
    "scripts": [
      "js/libs/TurboCommons-JS/TurboCommons-JS5-0.3.841.js",
      "js/model/Model.js",
      "js/managers/ListsManager.js",
      "js/controller/ControlTabs.js",
      "js/controller/ControlNotifications.js",
      "index.js"
    ]
  },
  "permissions": [
    "storage",
    "notifications",
    "tabs",
    "activeTab"
  ]
}