AutoMute

Automatically mutes each new tab the instant it is opened.

AutoMute란 무엇입니까?

AutoMute은(는) danbhentschel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically mutes each new tab the instant it is opened."입니다.

확장 프로그램 스크린샷

screenshot

AutoMute 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Are you getting tired of obnoxious ads blaring sound while you're browsing? AutoMute automatically mutes every tab opened in your browser, effectively allowing you to opt-in to hear audio in a web page, instead of forcing you to opt-out.                    

확장 프로그램 기본 정보

이름 AutoMute AutoMute
ID kjcdcbhfpjkcjinohfaaihpcmpnpmpie
공식 URL https://chromewebstore.google.com/detail/automute/kjcdcbhfpjkcjinohfaaihpcmpnpmpie
설명 Automatically mutes each new tab the instant it is opened.
파일 크기 72.51 KB
설치 횟수 11,057
현재 버전 2.1.1
최근 업데이트 2017-04-10
출시 날짜 2017-04-10
평점 4.30/5 총 92 개의 평점
개발자 danbhentschel
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoMute",
    "description": "Automatically mutes each new tab the instant it is opened.",
    "version": "2.1.1",
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "Speaker_19.png",
            "38": "Speaker_38.png"
        },
        "default_title": "AutoMute",
        "default_popup": "browserAction.html"
    },
    "commands": {
        "mute-all": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Mute all tabs"
        },
        "mute-tab": {
            "suggested_key": {
                "default": "Alt+Shift+M"
            },
            "description": "Mute current tab"
        },
        "mute-other": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Mute other tabs"
        }
    },
    "icons": {
        "16": "Speaker_16.png",
        "48": "Speaker_48.png",
        "128": "Speaker_128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}