Mute Noisy Tabs
Toggles the mute for audible tabs. Kills the muted tabs, if desired.
Mute Noisy Tabsคืออะไร?
Mute Noisy Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย PS และคุณลักษณะหลักของมันคือ "Toggles the mute for audible tabs. Kills the muted tabs, if desired."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mute Noisy Tabs
ดาวน์โหลดไฟล์ส่วนขยาย Mute Noisy Tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Mute Noisy Tabs |
ID | dopffpdmflkogolakidlgbnonnbelmlg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mute-noisy-tabs/dopffpdmflkogolakidlgbnonnbelmlg |
คำอธิบาย | Toggles the mute for audible tabs. Kills the muted tabs, if desired. |
ขนาดไฟล์ | 27.33 KB |
จำนวนการติดตั้ง | 26 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2016-03-21 |
วันที่เผยแพร่ | 2016-03-21 |
ผู้พัฒนา | PS |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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 } |