Volume Stabilizer

Stabilizes volume of chrome tabs playing audio

Vad är Volume Stabilizer?

Volume Stabilizer är en Chrome-tillägg utvecklad av extensionlabs, och dess huvudfunktion är "Stabilizes volume of chrome tabs playing audio".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Volume Stabilizer-förlängningens CRX-fil

Ladda ner Volume Stabilizer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Volume Stabilizer Volume Stabilizer
ID khhoinnlielpfndhpjldbednoefaficf
Officiell webbadress https://chromewebstore.google.com/detail/volume-stabilizer/khhoinnlielpfndhpjldbednoefaficf
Beskrivning Stabilizes volume of chrome tabs playing audio
Filstorlek 14.88 KB
Antal Installationer 294
Aktuell Version 1.0.0
Senast Uppdaterad 2021-10-08
Publiceringsdatum 2021-10-08
Betyg 2.67/5 Totalt 3 Betyg
Utvecklare extensionlabs
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}