Mute Tab Shortcuts

Quickly mute tabs with keyboard shortcuts

¿Qué es Mute Tab Shortcuts?

Mute Tab Shortcuts es una extensión de Chrome desarrollada por Daniel Pham, y su función principal es "Quickly mute tabs with keyboard shortcuts".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Mute Tab Shortcuts

Descarga archivos de extensión Mute Tab Shortcuts 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

                        Keyboard shortcuts for muting tabs.

Default setup:
- Mute/Unmute current tab - Alt + Shift + M
- Mute all except current one - Alt+Shift+N
- Mute/Unmute all tabs - Alt + Shift + Comma

Keybindings can be edited through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings.
Or past this in the omnibox:
chrome://extensions/shortcuts

Source Code:
https://github.com/danhp/mute-tab-chrome

Icon provided by www.72pxdesigns.com

==========
CHANGELOG
==========
1.1.0 -> 1.2.0
- Shortcuts now applies to all the windows instead of just the active one.
- Merge 'mute/unmute all tabs' to act like a toggle.

---
1.0.0 -> 1.1.0
 - Add a shortcut to mute all except the currently selected tab.
 - Only mute tabs that are currently audible instead of all.                    

Información Básica de la Extensión

Nombre Mute Tab Shortcuts Mute Tab Shortcuts
ID opcjanmpjbdbdpnjfjbboacibokblbhl
URL Oficial https://chromewebstore.google.com/detail/mute-tab-shortcuts/opcjanmpjbdbdpnjfjbboacibokblbhl
Descripción Quickly mute tabs with keyboard shortcuts
Tamaño del Archivo 9.84 KB
Cantidad de Instalaciones 46,472
Versión Actual 1.2.0
Última Actualización 2021-10-13
Fecha de Publicación 2019-11-19
Calificación 4.09/5 Total de 155 Calificaciones
Desarrollador Daniel Pham
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/danhp/mute-tab-chrome
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mute Tab Shortcuts",
    "version": "1.2.0",
    "description": "Quickly mute tabs with keyboard shortcuts",
    "icons": {
        "16": "imgs\/16.png",
        "48": "imgs\/48.png",
        "128": "imgs\/128.png"
    },
    "background": {
        "persisten": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "mute_tab_current": {
            "description": "Mute\/Unmute the selected tab",
            "suggested_key": {
                "default": "Alt+Shift+M"
            }
        },
        "mute_tab_all": {
            "description": "Mute\/Unmute all audible tabs.",
            "suggested_key": {
                "default": "Alt+Shift+Comma"
            }
        },
        "mute_tab_all_except_current": {
            "description": "Mute all audible tabs except current",
            "suggested_key": {
                "default": "Alt+Shift+N"
            }
        }
    }
}