Volume Stabilizer

Stabilizes volume of chrome tabs playing audio

Apa itu Volume Stabilizer?

Volume Stabilizer adalah ekstensi Chrome yang dikembangkan oleh extensionlabs, dan fitur utamanya adalah "Stabilizes volume of chrome tabs playing audio".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Volume Stabilizer

Unduh file ekstensi Volume Stabilizer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Volume Stabilizer Volume Stabilizer
ID khhoinnlielpfndhpjldbednoefaficf
URL Resmi https://chromewebstore.google.com/detail/volume-stabilizer/khhoinnlielpfndhpjldbednoefaficf
Deskripsi Stabilizes volume of chrome tabs playing audio
Ukuran File 14.88 KB
Jumlah Instalasi 294
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2021-10-08
Tanggal Publikasi 2021-10-08
Penilaian 2.67/5 Total 3 Penilaian
Pengembang extensionlabs
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}