Volume Mixer

Allows for the changing of individual tab volume

O que é Volume Mixer?

Volume Mixer é uma extensão do Chrome desenvolvida por Nick K, e sua principal característica é "Allows for the changing of individual tab volume".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Volume Mixer

Baixe arquivos de extensão Volume Mixer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This extension is a simple volume mixer that allows the user to change the volume of individual tabs as well as the master volume of all tabs from a simple popup UI in the right hand corner of the screen. To use, just click on the mixer icon, and select which volume level you wish to set for each tab. 

Note: This extension currently works only with HTML video and audio elements (does not work with Flash). It might be necessary to use another extension to force websites to use HTML5. 

If you find any bugs, or have any feedback in general about this app, email [email protected] and I will try to help you with any issues.                    

Informações Básicas da Extensão

Nome Volume Mixer Volume Mixer
ID nndlkolppogjamclcghenckmillbpoei
URL Oficial https://chrome.google.com/webstore/detail/volume-mixer/nndlkolppogjamclcghenckmillbpoei
Descrição Allows for the changing of individual tab volume
Tamanho do Arquivo 94.91 KB
Contagem de Instalações 7,000
Versão Atual 1.0
Última Atualização 2016-05-10
Data de Publicação 2016-05-10
Classificação 1.74/5 Total de 66 Avaliações
Desenvolvedor Nick K
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Volume Mixer",
    "description": "Allows for the changing of individual tab volume",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "volumechange.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    }
}