MuteTab

Take control of noisy tabs: mute by default, blacklists, and more

什么是MuteTab?

MuteTab是由https://www.mutetab.com开发的Chrome扩展程序,该扩展的主要功能是“Take control of noisy tabs: mute by default, blacklists, and more”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载MuteTab扩展crx文件

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

扩展使用说明

                        June 2016 update: MuteTab now mutes, knows when tabs are playing sound, and includes new features such as showing only recently noisy tabs, mute by default, and blacklists. 

The extension was first released in 2011 as an experiment in providing browsers with a better sound management experience given limitations imposed by Chrome and Flash. This latest version fixes previous functionality and adds new features thanks to work done since then that gave Chrome audio indicators and tab muting and made that accessible to extensions. 

MuteTab's features include: 

* Shows only tabs that are playing sound now or did so recently. This is great if you have a large number of tabs open, they span across windows, or you want help identifying what was playing sound.
* Mute all tabs, background tabs, or incognito tabs by default.
* Buttons and keyboard shortcuts to mute all tabs, mute background tabs, and unmute all tabs.
* Set exceptions to muting behavior via whitelists and blacklists.
* Add your music player to a "music list" so that it gets excluded when muting all or background tabs.
* "Privacy mode" will mute all of your tabs (including your music) when you want silence; you can then unmute tabs you want to listen to. You can assign it to a keyboard shortcut, too.
* Disable automuting lets you temporarily disable all of the above behavior.
* See a count of noisy tabs you avoided hearing by hovering over the "MuteTab" text in the top left corner.
* Experimental "music ducking" feature will mute your music for you when you watch a video and unmute it afterward.

Note: Chrome made various changes since this was released. You need to either use this extension to mute/unmute or Chrome's mute site site feature and not both.

Recent Release History

6/26/2023 v3.0.11 - Remove request for unused tabCapture permission

8/5/2019 v3.0.10 - Remove unsafe-eval permission request

8/5/2017 v3.0.9 - Fix for previous fix to prevent extension from dying

7/23/2017 v3.0.8 - Added error checking that will hopefully prevent the extension from dying

5/19/2017 v3.0.7 - New keyboard shortcut available to mute background tabs and unmute the current tab

4/12/2017 v3.0.6 - Fixed a bug that prevents muting a whitelisted tab when opened in a new tab

3/19/2017 v3.0.5 - Mutes all/background tabs when settings are loaded if that is the muting behavior.

11/20/2016 v3.0.3 - Doesn't mute tab if mute background tabs is set and tab is dragged to different window.

11/20/2016 v3.0.2 - Made UI wider and left-aligning menu items on the bottom so the UI looks better at various resolutions. Let me know if butons get cut off (ideally with a screenshot) so I can make it wider if needed.

6/2016 v3.x                    

扩展基本信息

名称 MuteTab MuteTab
ID acofndgbcimipbpeoplfjcapdbebbmca
官方URL https://chromewebstore.google.com/detail/mutetab/acofndgbcimipbpeoplfjcapdbebbmca
简介 Take control of noisy tabs: mute by default, blacklists, and more
文件大小 709 KB
安装次数 33,071
当前版本 3.0.12
更新时间 2023-06-26
上架时间 2019-08-05
评分 4.13/5 共90次评分
开发者 https://www.mutetab.com
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/jaredsohn/mutetab/issues/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MuteTab",
    "description": "Take control of noisy tabs: mute by default, blacklists, and more",
    "version": "3.0.12",
    "icons": {
        "16": "build\/img\/favicon.png",
        "48": "build\/img\/favicon.png",
        "128": "build\/img\/favicon.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "browser_action": {
        "default_title": "MuteTab",
        "default_icon": "build\/img\/favicon.png",
        "default_popup": "build\/html\/popup.html"
    },
    "commands": {
        "make_current_tab_only_unmuted": {
            "description": "Unmute current tab and mute others"
        },
        "toggle_current_muted": {
            "description": "Toggle muted for current tab",
            "suggested_key": {
                "default": "Alt+Shift+M"
            }
        },
        "mute_background": {
            "description": "Mute all background tabs",
            "suggested_key": {
                "default": "Alt+Shift+B"
            }
        },
        "mute_all": {
            "description": "Mute all tabs",
            "suggested_key": {
                "default": "Alt+Shift+A"
            }
        },
        "unmute_all": {
            "description": "Unmute all tabs"
        },
        "change_privacy_mode": {
            "description": "Toggle privacy mode",
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        },
        "show_unducked": {
            "description": "Show unducked"
        },
        "mute_unducked": {
            "description": "Mute unducked"
        }
    },
    "options_page": "build\/html\/options.html",
    "background": {
        "scripts": [
            "build\/js\/background-bundle.js"
        ],
        "persistent": true
    }
}