Volume Mixer

A chrome extension to control volume per tab

What is Volume Mixer?

Volume Mixer is a Chrome extension developed by Gagan Bindoria, and its main feature is "A chrome extension to control volume per tab".

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

                        A simple tool to control volume of each tab with a audio element with easy to use UI.                    

Extension Basic Information

Name Volume Mixer Volume Mixer
ID ghpkofodokpkakhbdbbeofmnomfikgon
Official URL https://chromewebstore.google.com/detail/volume-mixer/ghpkofodokpkakhbdbbeofmnomfikgon
Description A chrome extension to control volume per tab
File Size 721 KB
Installation Count 2,849
Current Version 1.0.3
Last Updated 2024-01-19
Publish Date 2021-05-16
Rating 3.00/5 Total 10 Ratings
Developer Gagan Bindoria
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to control volume per tab",
    "version": "1.0.3",
    "manifest_version": 3,
    "name": "Volume Mixer",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "html2canvas.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "html2canvas.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}