Mute Other Tabs

Mute Other Tabs

Smart Mute other tabs automatically even without clicking.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mute Other Tabs",
  "short_name": "Mute Others",
  "version": "0.0.11",
  "description": "Smart Mute other tabs automatically even without clicking.",
  "author": "Uğur Kaya",
  "homepage_url": "https://gitlab.com/ugurkaya88/chrome-mute-other-tabs",
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "images/icon_16x16.png",
      "32": "images/icon_32x32.png",
      "48": "images/icon_48x48.png",
      "128": "images/icon_128x128.png"
    }
  },
  "commands": {
    "mute-others": {
      "suggested_key": {
        "default": "Ctrl+Shift+I",
        "mac": "Command+Shift+I"
      },
      "description": "Mute other tabs"
    },
    "unmute-others": {
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "mac": "Command+Shift+U"
      },
      "description": "Unmute other tabs"
    }
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "shared/shared.js",
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/icon_16x16.png",
    "32": "images/icon_32x32.png",
    "48": "images/icon_48x48.png",
    "128": "images/icon_128x128.png"
  },
  "manifest_version": 2
}