Mute Noisy Tabs
Toggles the mute for audible tabs. Kills the muted tabs, if desired.
Cos'è Mute Noisy Tabs?
Mute Noisy Tabs è un'estensione di Chrome sviluppata da PS, e la sua funzione principale è "Toggles the mute for audible tabs. Kills the muted tabs, if desired.".
Scarica il file CRX dell'estensione Mute Noisy Tabs
Scarica i file di estensione Mute Noisy Tabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Mute Noisy Tabs |
ID | dopffpdmflkogolakidlgbnonnbelmlg |
URL Ufficiale | https://chromewebstore.google.com/detail/mute-noisy-tabs/dopffpdmflkogolakidlgbnonnbelmlg |
Descrizione | Toggles the mute for audible tabs. Kills the muted tabs, if desired. |
Dimensione del File | 27.33 KB |
Conteggio Installazioni | 26 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2016-03-21 |
Data di Pubblicazione | 2016-03-21 |
Sviluppatore | PS |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |