Audible Audio Control

Adds a volume controller to the Audible webplayer.

Audible Audio Control là gì?

Audible Audio Control là một tiện ích mở rộng Chrome được phát triển bởi peterphmikkelsen, và tính năng chính của nó là "Adds a volume controller to the Audible webplayer.".

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

screenshot

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

Tải xuống các tệp mở rộng Audible Audio Control 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

                        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.                    

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

Tên Audible Audio Control Audible Audio Control
ID djbhnpbemmoeenglcdojbkmpdmlcgeoi
URL Chính Thức https://chromewebstore.google.com/detail/audible-audio-control/djbhnpbemmoeenglcdojbkmpdmlcgeoi
Mô tả Adds a volume controller to the Audible webplayer.
Kích Thước Tệp 30.97 KB
Số Lần Cài Đặt 2,133
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2023-09-06
Ngày Phát Hành 2022-05-24
Đánh Giá 5.00/5 Tổng số 30 Đánh Giá
Nhà Phát Triển peterphmikkelsen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/peterphmikkelsen/audible-volume-control
URL Trang Trợ Giúp https://github.com/peterphmikkelsen/audible-volume-control/issues
Ngôn Ngữ Được Hỗ Trợ 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}"
        }
    }
}