Tab Muter

Tab Muter

Re-enables the "Mute Tab" feature once found in Chrome itself.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tab Muter",
  "description": "Re-enables the \"Mute Tab\" feature once found in Chrome itself.",
  "version": "2.1.0",
  "minimum_chrome_version": "122",
  "author": "Ash Holland",
  "action": {
    "default_title": "Mute tab",
    "default_icon": {
      "19": "images/audible-dark-19.png",
      "38": "images/audible-dark-38.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "icons": {
    "16": "images/webstore-icon-16.png",
    "48": "images/webstore-icon-48.png",
    "128": "images/webstore-icon-128.png"
  }
}