Tab Muter

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

什么是Tab Muter?

Tab Muter是由https://tab.muter.computer开发的Chrome扩展程序,该扩展的主要功能是“Re-enables the "Mute Tab" feature once found in Chrome itself.”。

扩展截图

screenshot

下载Tab Muter扩展crx文件

下载Tab Muter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Once upon a time, Chrome had a feature hidden away in chrome://flags to allow users to mute individual tabs by clicking the speaker icon next to the tab's title. This was deemed "not good enough", as the Chrome developers wanted to remove the need for users to manually control tab audio, so it was removed in favour of the "Mute Site" feature.

Chrome can't yet automatically determine which tabs should be playing audio, so I made this extension to let the user make that decision. The button's in a different place due to Chrome API limitations, but apart from that, this extension should work exactly as the old "Mute Tab" feature did.

Having trouble? Email support: [email protected]

This extension is free software; the source code is available at https://github.com/sersorrel/mute-tab.

If you find the extension useful, feel free to leave me a tip: https://ko-fi.com/sersorrel                    

扩展基本信息

名称 Tab Muter Tab Muter
ID bnclejfcblondkjliiblkojdeloomadd
官方URL https://chromewebstore.google.com/detail/tab-muter/bnclejfcblondkjliiblkojdeloomadd
简介 Re-enables the "Mute Tab" feature once found in Chrome itself.
文件大小 55.56 KB
安装次数 144,025
当前版本 2.1.0
更新时间 2024-03-04
上架时间 2020-04-27
评分 4.48/5 共151次评分
开发者 https://tab.muter.computer
电子邮箱 [email protected]
付费类型 free
扩展官网 https://sorrel.sh/projects/tab-muter/
支持的语言 en
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"
    }
}