MuteTab B E T A
Take control of noisy tabs: mute by default, blacklists, and more
MuteTab B E T A là gì?
MuteTab B E T A là một tiện ích mở rộng Chrome được phát triển bởi Jared Sohn, và tính năng chính của nó là "Take control of noisy tabs: mute by default, blacklists, and more".
Ả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 MuteTab B E T A
Tải xuống các tệp mở rộng MuteTab B E T A 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
Your feedback on this beta is greatly appreciated. June 2016 update: M u t e T a b now mutes, knows when tabs are playing sound, and includes new features such as showing only recently noisy tabs, mute by default, and blacklists. The extension was first released in 2011 as an experiment in providing browsers with a better sound management experience given limitations imposed by Chrome and Flash. This latest version fixes previous functionality and adds new features thanks to work done since then that gave Chrome audio indicators and tab muting and made that accessible to extensions. M u t e T a b's features include: * Shows only tabs that are playing sound now or did so recently. This is great if you have a large number of tabs open, they span across windows, or you want help identifying what was playing sound. * Mute all tabs, background tabs, or incognito tabs by default. * Buttons and keyboard shortcuts to mute all tabs, mute background tabs, and unmute all tabs. * Set exceptions to muting behavior via whitelists and blacklists. * Add your music player to a "music list" so that it gets excluded when muting all or background tabs. * "Privacy mode" will mute all of your tabs (including your music) when you want silence; you can then unmute tabs you want to listen to. You can assign it to a keyboard shortcut, too. * Disable automuting lets you temporarily disable all of the above behavior. * See a count of noisy tabs you avoided hearing by hovering over the "MuteTab" text in the top left corner. * Experimental "music ducking" feature will mute your music for you when you watch a video and unmute it afterward.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | MuteTab B E T A |
ID | djiagjcjenpnblipghgnefmcflecpbgf |
URL Chính Thức | https://chromewebstore.google.com/detail/mutetab-b-e-t-a/djiagjcjenpnblipghgnefmcflecpbgf |
Mô tả | Take control of noisy tabs: mute by default, blacklists, and more |
Kích Thước Tệp | 708 KB |
Số Lần Cài Đặt | 977 |
Phiên Bản Hiện Tại | 3.0.12 |
Cập Nhật Lần Cuối | 2020-02-25 |
Ngày Phát Hành | 2020-02-25 |
Đánh Giá | 1.93/5 Tổng số 15 Đánh Giá |
Nhà Phát Triển | Jared Sohn |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.mutetab.com |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MuteTab B E T A", "description": "Take control of noisy tabs: mute by default, blacklists, and more", "version": "3.0.12", "icons": { "16": "build\/img\/favicon.png", "48": "build\/img\/favicon.png", "128": "build\/img\/favicon.png" }, "permissions": [ "tabs", "storage", "contextMenus" ], "browser_action": { "default_title": "MuteTab", "default_icon": "build\/img\/favicon.png", "default_popup": "build\/html\/popup.html" }, "commands": { "make_current_tab_only_unmuted": { "description": "Unmute current tab and mute others" }, "toggle_current_muted": { "description": "Toggle muted for current tab", "suggested_key": { "default": "Alt+Shift+M" } }, "mute_background": { "description": "Mute all background tabs", "suggested_key": { "default": "Alt+Shift+B" } }, "mute_all": { "description": "Mute all tabs", "suggested_key": { "default": "Alt+Shift+A" } }, "unmute_all": { "description": "Unmute all tabs" }, "change_privacy_mode": { "description": "Toggle privacy mode", "suggested_key": { "default": "Alt+Shift+P" } }, "show_unducked": { "description": "Show unducked" }, "mute_unducked": { "description": "Mute unducked" } }, "options_page": "build\/html\/options.html", "background": { "scripts": [ "build\/js\/background-bundle.js" ], "persistent": true } } |