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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}