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
Eメール [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"
    ]
}