Audible Audio Control
Adds a volume controller to the Audible webplayer.
Audible Audio Controlคืออะไร?
Audible Audio Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย peterphmikkelsen และคุณลักษณะหลักของมันคือ "Adds a volume controller to the Audible webplayer."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Audible Audio Control
ดาวน์โหลดไฟล์ส่วนขยาย Audible Audio Control ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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}" } } } |