Mute Tab Shortcuts

Quickly mute tabs with keyboard shortcuts

Qu'est-ce que Mute Tab Shortcuts ?

Mute Tab Shortcuts est une extension Chrome développée par Daniel Pham, et sa fonction principale est "Quickly mute tabs with keyboard shortcuts".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Mute Tab Shortcuts

Téléchargez les fichiers d'extension Mute Tab Shortcuts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Mute Tab Shortcuts Mute Tab Shortcuts
ID opcjanmpjbdbdpnjfjbboacibokblbhl
URL Officiel https://chromewebstore.google.com/detail/mute-tab-shortcuts/opcjanmpjbdbdpnjfjbboacibokblbhl
Description Quickly mute tabs with keyboard shortcuts
Taille du Fichier 9.84 KB
Nombre d'Installations 46,472
Version Actuelle 1.2.0
Dernière Mise à Jour 2021-10-13
Date de Publication 2019-11-19
Évaluation 4.09/5 Total 155 Évaluations
Développeur Daniel Pham
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/danhp/mute-tab-chrome
Langues Prises en Charge 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"
            }
        }
    }
}