Volume Stabilizer

Stabilizes volume of chrome tabs playing audio

Wat is Volume Stabilizer?

Volume Stabilizer is een Chrome-extensie ontwikkeld door extensionlabs, en de belangrijkste functie is "Stabilizes volume of chrome tabs playing audio".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Volume Stabilizer

Download Volume Stabilizer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Volume Stabilizer Volume Stabilizer
ID khhoinnlielpfndhpjldbednoefaficf
Officiële URL https://chromewebstore.google.com/detail/volume-stabilizer/khhoinnlielpfndhpjldbednoefaficf
Beschrijving Stabilizes volume of chrome tabs playing audio
Bestandsgrootte 14.88 KB
Aantal Installaties 294
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-10-08
Publicatiedatum 2021-10-08
Beoordeling 2.67/5 Totaal 3 Beoordelingen
Ontwikkelaar extensionlabs
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}