Mute Tab Helper

This extension helps manage tab audio state

¿Qué es Mute Tab Helper?

Mute Tab Helper es una extensión de Chrome desarrollada por Jean-Lou Dupont (systemical), y su función principal es "This extension helps manage tab audio state".

Descargar Archivo CRX de la Extensión Mute Tab Helper

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

                        Are you tired of annoying pages that load and start playing audio right away ?

By default, when a tab gets loaded with a new domain (one not already tracked by the extension), the audio state will be muted (state: perma-mute).
The user has now the following choices:

* The user can mute/unmute the domain visited in the browser tab through the extension's browser action button
* The user can mute/unmute the tab through the usual tab menu - this action will not affect the state maintained by the extension                    

Información Básica de la Extensión

Nombre Mute Tab Helper Mute Tab Helper
ID jefhmnjbjemabbmakhmpmlnpfmcdjdfh
URL Oficial https://chromewebstore.google.com/detail/mute-tab-helper/jefhmnjbjemabbmakhmpmlnpfmcdjdfh
Descripción This extension helps manage tab audio state
Tamaño del Archivo 19.22 KB
Cantidad de Instalaciones 73
Versión Actual 0.0.1
Última Actualización 2016-09-02
Fecha de Publicación 2016-09-02
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Jean-Lou Dupont (systemical)
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mute Tab Helper",
    "description": "This extension helps manage tab audio state",
    "version": "0.0.1",
    "icons": {
        "128": "perma-unmute-128.png"
    },
    "browser_action": {
        "default_title": "Mute Helper",
        "default_icon": {
            "38": "perma-unmute-38.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ]
}