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