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
公式URL 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
}