Volume Booster With Keyboard Shortcuts

Volume Booster helps boost video sound on any tab! You can increase or decrease volume using keyboard shortcuts

Volume Booster With Keyboard Shortcuts란 무엇입니까?

Volume Booster With Keyboard Shortcuts은(는) goodmoviesinfo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Volume Booster helps boost video sound on any tab! You can increase or decrease volume using keyboard shortcuts"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Volume Booster With Keyboard Shortcuts 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Volume Booster With Keyboard Shortcuts helps boost video or music volume to up to 600%.

After installation, you can click the extension icon and control the volume using the slider, or use the toggle to turn off/on the extension.

Volume level is per tab. You can set different volume levels for different tabs.

You can use "Alt+Up" to increase the volume and "Alt+Down" to decrease the volume. Sometimes you need to click the extension icon for at least once.                    

확장 프로그램 기본 정보

이름 Volume Booster With Keyboard Shortcuts Volume Booster With Keyboard Shortcuts
ID ilkeadgdlbmabcdkgmiogcamcogbjoii
공식 URL https://chromewebstore.google.com/detail/volume-booster-with-keybo/ilkeadgdlbmabcdkgmiogcamcogbjoii
설명 Volume Booster helps boost video sound on any tab! You can increase or decrease volume using keyboard shortcuts
파일 크기 112 KB
설치 횟수 46
현재 버전 1.0
최근 업데이트 2024-02-06
출시 날짜 2024-02-06
평점 5.00/5 총 1 개의 평점
개발자 goodmoviesinfo
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "name": "Volume Booster With Keyboard Shortcuts",
    "version": "1.0",
    "action": {
        "default_icon": {
            "19": "icons\/icon-logo.png",
            "38": "icons\/icon-logo.png"
        }
    },
    "description": "Volume Booster helps boost video sound on any tab! You can increase or decrease volume using keyboard shortcuts",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "libs\/jquery.min.js",
                "content.js"
            ]
        }
    ],
    "commands": {
        "volume-up": {
            "suggested_key": {
                "default": "Alt+Up"
            },
            "description": "Increase the volume"
        },
        "volume-down": {
            "suggested_key": {
                "default": "Alt+Down"
            },
            "description": "Decrease the volume"
        }
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "128": "icons\/icon-logo.png"
    },
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "tabCapture",
        "storage",
        "system.display"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "*.css"
            ]
        }
    ]
}