Volume Stabilizer

Stabilizes volume of chrome tabs playing audio

什麼是Volume Stabilizer?

Volume Stabilizer是由extensionlabs開發的Chrome擴展程式,該擴展的主要功能是“Stabilizes volume of chrome tabs playing audio”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Volume Stabilizer擴展crx文件

下載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
官方網址 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"
    ]
}