Mute Noisy Tabs
Toggles the mute for audible tabs. Kills the muted tabs, if desired.
Wat is Mute Noisy Tabs?
Mute Noisy Tabs is een Chrome-extensie ontwikkeld door PS, en de belangrijkste functie is "Toggles the mute for audible tabs. Kills the muted tabs, if desired.".
Download het CRX-bestand van de extensie Mute Noisy Tabs
Download Mute Noisy Tabs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Mute Noisy Tabs |
ID | dopffpdmflkogolakidlgbnonnbelmlg |
Officiële URL | https://chromewebstore.google.com/detail/mute-noisy-tabs/dopffpdmflkogolakidlgbnonnbelmlg |
Beschrijving | Toggles the mute for audible tabs. Kills the muted tabs, if desired. |
Bestandsgrootte | 27.33 KB |
Aantal Installaties | 26 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2016-03-21 |
Publicatiedatum | 2016-03-21 |
Ontwikkelaar | PS |
Betalingswijze | free |
Ondersteunde Talen | 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 } |