Mute Noisy Tabs
Toggles the mute for audible tabs. Kills the muted tabs, if desired.
Mute Noisy Tabs là gì?
Mute Noisy Tabs là một tiện ích mở rộng Chrome được phát triển bởi PS, và tính năng chính của nó là "Toggles the mute for audible tabs. Kills the muted tabs, if desired.".
Tải xuống tệp CRX của tiện ích mở rộng Mute Noisy Tabs
Tải xuống các tệp mở rộng Mute Noisy Tabs 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
The extension helps manage the tabs which are audible (producing sound). You can use the extension to mute/unmute all the tabs which are audible. These tabs can also be closed, if desired. Usage: - Click the extension button to toggle the mute status for the audible tabs. - Alternatively, use the keyboard shortcut 'Ctrl+M' (or 'Command+M') to toggle the mute/unmute status. - To close all muted tabs, press 'Ctrl+Shift+Comma' (or 'Command+Shift+Comma'). - To close all audible tabs, press 'Ctrl+Shift+Comma' twice.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Mute Noisy Tabs |
ID | dopffpdmflkogolakidlgbnonnbelmlg |
URL Chính Thức | https://chromewebstore.google.com/detail/mute-noisy-tabs/dopffpdmflkogolakidlgbnonnbelmlg |
Mô tả | Toggles the mute for audible tabs. Kills the muted tabs, if desired. |
Kích Thước Tệp | 27.33 KB |
Số Lần Cài Đặt | 26 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2016-03-21 |
Ngày Phát Hành | 2016-03-21 |
Nhà Phát Triển | PS |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mute Noisy Tabs", "description": "Toggles the mute for audible tabs. Kills the muted tabs, if desired.", "version": "0.1", "browser_action": { "default_icon": "soundOn.png" }, "background": { "scripts": [ "eventpage.js" ], "persistent": false }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+M", "mac": "Command+M" }, "description": "Simulates the standard browser action button click." }, "killAudibleTabs": { "suggested_key": { "default": "Ctrl+Shift+Comma", "mac": "Command+Shift+Comma" }, "description": "Kills the muted tabs." } }, "permissions": [ "tabs" ], "offline_enabled": true } |