Volume Stabilizer

Stabilizes volume of chrome tabs playing audio

ما هو Volume Stabilizer؟

Volume Stabilizer هو إضافة Chrome تم تطويرها بواسطة extensionlabs، والميزة الرئيسية لها هي "Stabilizes volume of chrome tabs playing audio".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Volume Stabilizer

قم بتنزيل ملفات الامتداد Volume Stabilizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Volume Stabilizer Volume Stabilizer
ID khhoinnlielpfndhpjldbednoefaficf
عنوان URL الرسمي https://chromewebstore.google.com/detail/volume-stabilizer/khhoinnlielpfndhpjldbednoefaficf
الوصف Stabilizes volume of chrome tabs playing audio
حجم الملف 14.88 KB
عدد التثبيتات 294
النسخة الحالية 1.0.0
آخر تحديث 2021-10-08
تاريخ النشر 2021-10-08
تقييم 2.67/5 مجموع تقييمات 3
المطور extensionlabs
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    ]
}