Mute Noisy Tabs
Toggles the mute for audible tabs. Kills the muted tabs, if desired.
¿Qué es Mute Noisy Tabs?
Mute Noisy Tabs es una extensión de Chrome desarrollada por PS, y su función principal es "Toggles the mute for audible tabs. Kills the muted tabs, if desired.".
Descargar Archivo CRX de la Extensión Mute Noisy Tabs
Descarga archivos de extensión Mute Noisy Tabs en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Mute Noisy Tabs |
ID | dopffpdmflkogolakidlgbnonnbelmlg |
URL Oficial | https://chromewebstore.google.com/detail/mute-noisy-tabs/dopffpdmflkogolakidlgbnonnbelmlg |
Descripción | Toggles the mute for audible tabs. Kills the muted tabs, if desired. |
Tamaño del Archivo | 27.33 KB |
Cantidad de Instalaciones | 26 |
Versión Actual | 0.1 |
Última Actualización | 2016-03-21 |
Fecha de Publicación | 2016-03-21 |
Desarrollador | PS |
Tipo de Pago | free |
Idiomas Soportados | 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 } |