Mute Everything

Mutes everything by pausing all audio and video.

Mute Everythingとは何ですか?

Mute EverythingはBozozoによって開発されたChromeの拡張機能で、その主な機能は「Mutes everything by pausing all audio and video.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Mute Everything拡張機能のCRXファイルをダウンロード

Mute Everything拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Mute Everything stops all audio playing in your browser with a single click. Enjoy the silence!

Do you ever find yourself scrolling through a bunch of tabs in search of that one video that's still playing? Simply press the Mute Everything button to pause it instantly.

* This extension works by pausing all audio and video elements
* Includes support for common music services (GrooveShark, Pandora, SoundCloud, and many more)
* Works excellently with YouTube videos and HTML5 media
* Plug-in objects can not be paused; they are inaccessible). Instead, such objects are temporarily removed, and can be individually restored with a single click.

This extension is far from perfect... please report any problems through the Feedback page. Please don't use reviews to report specific bugs, as I cannot respond to those.                    

拡張機能の基本情報

名前 Mute Everything Mute Everything
ID jcdccblikjhgpbjhfleoidoeildbcima
公式URL https://chromewebstore.google.com/detail/mute-everything/jcdccblikjhgpbjhfleoidoeildbcima
説明 Mutes everything by pausing all audio and video.
ファイルサイズ 42.14 KB
インストール数 551
現在のバージョン 0.1
最終更新日 2014-01-25
公開日 2014-01-25
評価 1.88/5 合計 34 レビュー
開発者 Bozozo
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mute Everything",
    "version": "0.1",
    "author": "Arno van den Brink",
    "description": "Mutes everything by pausing all audio and video.",
    "offline_enabled": true,
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Mute Everything!"
    }
}