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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!"
    }
}