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 |
官方網址 | 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 } } |