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.」です。
拡張機能のスクリーンショット
AutoMute拡張機能のCRXファイルをダウンロード
AutoMute拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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 } } |