Volume Stabilizer

Stabilizes volume of chrome tabs playing audio

Co to jest Volume Stabilizer?

Volume Stabilizer to rozszerzenie Chrome opracowane przez extensionlabs, a jego główną funkcją jest „Stabilizes volume of chrome tabs playing audio”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Volume Stabilizer

Pobierz pliki rozszerzeń Volume Stabilizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Volume Stabilizer Volume Stabilizer
ID khhoinnlielpfndhpjldbednoefaficf
Oficjalny URL https://chromewebstore.google.com/detail/volume-stabilizer/khhoinnlielpfndhpjldbednoefaficf
Opis Stabilizes volume of chrome tabs playing audio
Rozmiar pliku 14.88 KB
Liczba instalacji 294
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-10-08
Data Publikacji 2021-10-08
Ocena 2.67/5 Łącznie 3 Oceny
Deweloper extensionlabs
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}