Context Mute

Context Mute

Adds an option to toggle muting of the current tab to the context menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Context Mute",
  "version": "1.0.1",
  "description": "Adds an option to toggle muting of the current tab to the context menu",
  "icons": {
    "32": "icons/speaker.png"
  },
  "browser_action": {
    "default_title": "Context Mute",
    "default_icon": "icons/speaker.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}