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 |
公式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 |
Eメール | [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}" } } } |