Volume Mixer

Allows for the changing of individual tab volume

What is Volume Mixer?

Volume Mixer is a Chrome extension developed by Nick K, and its main feature is "Allows for the changing of individual tab volume".

Extension Screenshots

screenshot

Download Volume Mixer Extension CRX File

Download Volume Mixer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Volume Mixer Volume Mixer
ID nndlkolppogjamclcghenckmillbpoei
Official URL https://chrome.google.com/webstore/detail/volume-mixer/nndlkolppogjamclcghenckmillbpoei
Description Allows for the changing of individual tab volume
File Size 94.91 KB
Installation Count 7,000
Current Version 1.0
Last Updated 2016-05-10
Publish Date 2016-05-10
Rating 1.74/5 Total 66 Ratings
Developer Nick K
Payment Type free
Supported Languages 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"
    }
}