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.”。
擴展截圖
下載Audible Audio Control擴展crx文件
下載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 |
官方網址 | 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}" } } } |