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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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