Volume Stabilizer

Stabilizes volume of chrome tabs playing audio

Volume Stabilizer là gì?

Volume Stabilizer là một tiện ích mở rộng Chrome được phát triển bởi extensionlabs, và tính năng chính của nó là "Stabilizes volume of chrome tabs playing audio".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Volume Stabilizer

Tải xuống các tệp mở rộng Volume Stabilizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Volume Stabilizer Volume Stabilizer
ID khhoinnlielpfndhpjldbednoefaficf
URL Chính Thức https://chromewebstore.google.com/detail/volume-stabilizer/khhoinnlielpfndhpjldbednoefaficf
Mô tả Stabilizes volume of chrome tabs playing audio
Kích Thước Tệp 14.88 KB
Số Lần Cài Đặt 294
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-10-08
Ngày Phát Hành 2021-10-08
Đánh Giá 2.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển extensionlabs
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}