Mute Tab

Mute Tab

Restores the 'Mute Tab' functionality of versions prior to Chrome 71.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mute Tab",
  "version": "1.4",
  "description": "Restores the 'Mute Tab' functionality of versions prior to Chrome 71.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "icons": {
    "16": "images/16_u_white.png",
    "48": "images/48_u_white.png",
    "128": "images/128_u_white.png"
  },
  "browser_action": {
    "default_title": "Mute Tab Extension"
  },
  "manifest_version": 2
}