AutoMute
Automatically mutes each new tab the instant it is opened.
AutoMute là gì?
AutoMute là một tiện ích mở rộng Chrome được phát triển bởi danbhentschel, và tính năng chính của nó là "Automatically mutes each new tab the instant it is opened.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AutoMute
Tải xuống các tệp mở rộng AutoMute dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AutoMute |
ID | kjcdcbhfpjkcjinohfaaihpcmpnpmpie |
URL Chính Thức | https://chromewebstore.google.com/detail/automute/kjcdcbhfpjkcjinohfaaihpcmpnpmpie |
Mô tả | Automatically mutes each new tab the instant it is opened. |
Kích Thước Tệp | 72.51 KB |
Số Lần Cài Đặt | 11,057 |
Phiên Bản Hiện Tại | 2.1.1 |
Cập Nhật Lần Cuối | 2017-04-10 |
Ngày Phát Hành | 2017-04-10 |
Đánh Giá | 4.30/5 Tổng số 92 Đánh Giá |
Nhà Phát Triển | danbhentschel |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |