Audible Audio Control

Adds a volume controller to the Audible webplayer.

Audible Audio Control란 무엇입니까?

Audible Audio Control은(는) peterphmikkelsen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a volume controller to the Audible webplayer."입니다.

확장 프로그램 스크린샷

screenshot

Audible Audio Control 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Audible Volume Control is an extension that was created because I personally was tired of not being able to control the volume when using the Audible web-player.

At the time of writing this, Audible has just announced that they are discontinuing their native Audible app for Windows (it will probably be replaced with the Android version in Windows 11). Soon, the only option will be the web-player.

Should work for all domains.                    

확장 프로그램 기본 정보

이름 Audible Audio Control Audible Audio Control
ID djbhnpbemmoeenglcdojbkmpdmlcgeoi
공식 URL https://chromewebstore.google.com/detail/audible-audio-control/djbhnpbemmoeenglcdojbkmpdmlcgeoi
설명 Adds a volume controller to the Audible webplayer.
파일 크기 30.97 KB
설치 횟수 2,133
현재 버전 2.0.0
최근 업데이트 2023-09-06
출시 날짜 2022-05-24
평점 5.00/5 총 30 개의 평점
개발자 peterphmikkelsen
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/peterphmikkelsen/audible-volume-control
도움말 페이지 URL https://github.com/peterphmikkelsen/audible-volume-control/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Audible Audio Control",
    "version": "2.0.0",
    "description": "Adds a volume controller to the Audible webplayer.",
    "icons": {
        "48": "icons\/volume.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "https:\/\/www.audible.*\/webplayer*"
            ],
            "js": [
                "audio-control.js"
            ],
            "css": [
                "audio-control.css"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{6416fba2-1151-4e0b-ad65-1c36b3994ef1}"
        }
    }
}