Louder

This addon enables you to enhance the sound beyond the maximum level.

Louder란 무엇입니까?

Louder은(는) no9에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This addon enables you to enhance the sound beyond the maximum level."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Louder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension is useful when the sound on a webpage is too quiet despite setting it to the maximum volume. It can sometimes help to balance the volume of sound when it varies significantly over time. It works on both video and audio elements on pages that allow it. The extension is activated by clicking the left mouse button on its icon. After clicking on the extension's icon with the right mouse button, a menu with additional options appears, which can be useful in certain situations. To fully reset the sound after adjusting the volume using the extension, it is recommended to reload the page.

Known issues:
-    On some pages, it is not possible to adjust the volume of the played elements. This is due to how the specific page is designed.
-    On some pages, when clicking on the extension button, the browser may mute the sound. This is due to the security configuration of the specific page or the server it is hosted on and unfortunately cannot be detected from the extension's point of view.

If you find this extension useful, you may consider supporting the author with a donation of any amount. Check the menu by right-clicking the extension button.                    

확장 프로그램 기본 정보

이름 Louder Louder
ID jmpnkhemdplokdmeffenjlbpggphdapc
공식 URL https://chromewebstore.google.com/detail/louder/jmpnkhemdplokdmeffenjlbpggphdapc
설명 This addon enables you to enhance the sound beyond the maximum level.
파일 크기 65.81 KB
설치 횟수 4,015
현재 버전 1.0.4
최근 업데이트 2023-07-26
출시 날짜 2019-10-27
평점 3.39/5 총 18 개의 평점
개발자 no9
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Louder",
    "description": "This addon enables you to enhance the sound beyond the maximum level.",
    "version": "1.0.4",
    "author": "[email protected]",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "louder.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "action": {
        "default_icon": "icon19.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png"
    }
}