Volume Stabilizer

Stabilizes volume of chrome tabs playing audio

Qu'est-ce que Volume Stabilizer ?

Volume Stabilizer est une extension Chrome développée par extensionlabs, et sa fonction principale est "Stabilizes volume of chrome tabs playing audio".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Volume Stabilizer

Téléchargez les fichiers d'extension Volume Stabilizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Volume Stabilizer Volume Stabilizer
ID khhoinnlielpfndhpjldbednoefaficf
URL Officiel https://chromewebstore.google.com/detail/volume-stabilizer/khhoinnlielpfndhpjldbednoefaficf
Description Stabilizes volume of chrome tabs playing audio
Taille du Fichier 14.88 KB
Nombre d'Installations 294
Version Actuelle 1.0.0
Dernière Mise à Jour 2021-10-08
Date de Publication 2021-10-08
Évaluation 2.67/5 Total 3 Évaluations
Développeur extensionlabs
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}