Mute Other Tabs

Smart Mute other tabs automatically even without clicking.

Qu'est-ce que Mute Other Tabs ?

Mute Other Tabs est une extension Chrome développée par ugurkaya88, et sa fonction principale est "Smart Mute other tabs automatically even without clicking.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Mute Other Tabs

Téléchargez les fichiers d'extension Mute Other Tabs 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

                        'Smart Mute' other tabs automatically even without clicking. 

It is irritating to have multiple tabs playing audio in the background and you can't even find out where that sound comes from.

This extension handles this for you automatically and you don't even need to do anything else but installing the extension.

If you want to control the behaviour of the extension, you can simple use the extension popup user interface;
* to change smart mute behaviour
* to mute / unmute other tabs

or you can use the predefined shortcuts for muting and unmuting.

Mute:
* CTRL + SHIFT + I
* COMMAND + SHIFT + I

Unmute:
* CTRL + SHIFT + U
* COMMAND + SHIFT + U                    

Informations de Base sur l'Extension

Nom Mute Other Tabs Mute Other Tabs
ID pcdkbmcaonbomnccedjcgjmafdocojen
URL Officiel https://chrome.google.com/webstore/detail/mute-other-tabs/pcdkbmcaonbomnccedjcgjmafdocojen
Description Smart Mute other tabs automatically even without clicking.
Taille du Fichier 781 KB
Nombre d'Installations 145
Version Actuelle 0.0.11
Dernière Mise à Jour 2018-08-24
Date de Publication 2018-08-24
Évaluation 3.00/5 Total 2 Évaluations
Développeur ugurkaya88
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://gitlab.com/ugurkaya88/chrome-mute-other-tabs
URL de la Page d'Aide https://gitlab.com/ugurkaya88/chrome-mute-other-tabs
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mute Other Tabs",
    "short_name": "Mute Others",
    "version": "0.0.11",
    "description": "Smart Mute other tabs automatically even without clicking.",
    "author": "U\u011fur Kaya",
    "homepage_url": "https:\/\/gitlab.com\/ugurkaya88\/chrome-mute-other-tabs",
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/icon_16x16.png",
            "32": "images\/icon_32x32.png",
            "48": "images\/icon_48x48.png",
            "128": "images\/icon_128x128.png"
        }
    },
    "commands": {
        "mute-others": {
            "suggested_key": {
                "default": "Ctrl+Shift+I",
                "mac": "Command+Shift+I"
            },
            "description": "Mute other tabs"
        },
        "unmute-others": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Unmute other tabs"
        }
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "shared\/shared.js",
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/icon_16x16.png",
        "32": "images\/icon_32x32.png",
        "48": "images\/icon_48x48.png",
        "128": "images\/icon_128x128.png"
    },
    "manifest_version": 2
}