Volume Mixer

Allows for the changing of individual tab volume

Qu'est-ce que Volume Mixer ?

Volume Mixer est une extension Chrome développée par Nick K, et sa fonction principale est "Allows for the changing of individual tab volume".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Volume Mixer

Téléchargez les fichiers d'extension Volume Mixer 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

                        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.                    

Informations de Base sur l'Extension

Nom Volume Mixer Volume Mixer
ID nndlkolppogjamclcghenckmillbpoei
URL Officiel https://chrome.google.com/webstore/detail/volume-mixer/nndlkolppogjamclcghenckmillbpoei
Description Allows for the changing of individual tab volume
Taille du Fichier 94.91 KB
Nombre d'Installations 7,000
Version Actuelle 1.0
Dernière Mise à Jour 2016-05-10
Date de Publication 2016-05-10
Évaluation 1.74/5 Total 66 Évaluations
Développeur Nick K
Type de Paiement free
Langues Prises en Charge 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"
    }
}