Mute Noisy Tabs

Toggles the mute for audible tabs. Kills the muted tabs, if desired.

什麼是Mute Noisy Tabs?

Mute Noisy Tabs是由PS開發的Chrome擴展程式,該擴展的主要功能是“Toggles the mute for audible tabs. Kills the muted tabs, if desired.”。

下載Mute Noisy Tabs擴展crx文件

下載Mute Noisy Tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The extension helps manage the tabs which are audible (producing sound). You can use the extension to mute/unmute all the tabs which are audible. These tabs can also be closed, if desired.

Usage:
- Click the extension button to toggle the mute status for the audible tabs.
- Alternatively, use the keyboard shortcut 'Ctrl+M' (or 'Command+M') to toggle the mute/unmute status.
- To close all muted tabs, press 'Ctrl+Shift+Comma' (or 'Command+Shift+Comma').
- To close all audible tabs, press 'Ctrl+Shift+Comma' twice.                    

擴展基本資訊

名稱 Mute Noisy Tabs Mute Noisy Tabs
ID dopffpdmflkogolakidlgbnonnbelmlg
官方網址 https://chromewebstore.google.com/detail/mute-noisy-tabs/dopffpdmflkogolakidlgbnonnbelmlg
簡介 Toggles the mute for audible tabs. Kills the muted tabs, if desired.
檔案大小 27.33 KB
安裝次數 26
目前版本 0.1
更新時間 2016-03-21
上架時間 2016-03-21
開發者 PS
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mute Noisy Tabs",
    "description": "Toggles the mute for audible tabs. Kills the muted tabs, if desired.",
    "version": "0.1",
    "browser_action": {
        "default_icon": "soundOn.png"
    },
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Simulates the standard browser action button click."
        },
        "killAudibleTabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+Comma",
                "mac": "Command+Shift+Comma"
            },
            "description": "Kills the muted tabs."
        }
    },
    "permissions": [
        "tabs"
    ],
    "offline_enabled": true
}