AutoMute Incognito

AutoMute Incognito

This extension automatically mutes icognito tabs. Use CTRL+M to toogle sound of current tab!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AutoMute Incognito",
  "description": "This extension automatically mutes icognito tabs.\nUse CTRL+M to toogle sound of current tab!",
  "version": "1.2",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "res/icon.png"
  },
  "icons": {
    "48": "res/icon.png",
    "128": "res/store_icon.png"
  },
  "commands": {
    "toglePageMute": {
      "description": "Toggle sound of current Tab",
      "suggested_key": {
        "default": "Ctrl+M",
        "windows": "Ctrl+M",
        "mac": "Command+M",
        "chromeos": "Ctrl+M",
        "linux": "Ctrl+M"
      }
    }
  }
}