Volume Stabilizer

Stabilizes volume of chrome tabs playing audio

What is Volume Stabilizer?

Volume Stabilizer is a Chrome extension developed by extensionlabs, and its main feature is "Stabilizes volume of chrome tabs playing audio".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Volume Stabilizer Extension CRX File

Download Volume Stabilizer 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 chrome extension to stabilize the volume of audio playing across all tabs. 

Just install the extension to decrease the volume of media when there is a jarring loud noise (explosion, yelling etc).

I have also included some usability features:
  ☑️ Customizable advanced settings to adjust the compressor effect
  ☑️ Icon indicator when audio is being played
  ☑️ Switch to any tab that plays audio with one click

💬 I am always happy to hear suggestions to improve the extension! Please let me know if there's anything I can do to improve the experience.                    

Extension Basic Information

Name Volume Stabilizer Volume Stabilizer
ID khhoinnlielpfndhpjldbednoefaficf
Official URL https://chromewebstore.google.com/detail/volume-stabilizer/khhoinnlielpfndhpjldbednoefaficf
Description Stabilizes volume of chrome tabs playing audio
File Size 14.88 KB
Installation Count 294
Current Version 1.0.0
Last Updated 2021-10-08
Publish Date 2021-10-08
Rating 2.67/5 Total 3 Ratings
Developer extensionlabs
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Volume Stabilizer",
    "description": "Stabilizes volume of chrome tabs playing audio",
    "version": "1.0.0",
    "icons": {
        "128": "res\/icon.png"
    },
    "browser_action": {
        "default_icon": "res\/icon.png",
        "default_popup": "popup.html",
        "default_title": "Volume Stabilizer"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}