Audible Audio Control
Adds a volume controller to the Audible webplayer.
Co to jest Audible Audio Control?
Audible Audio Control to rozszerzenie Chrome opracowane przez peterphmikkelsen, a jego główną funkcją jest „Adds a volume controller to the Audible webplayer.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Audible Audio Control
Pobierz pliki rozszerzeń Audible Audio Control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Audible Audio Control |
ID | djbhnpbemmoeenglcdojbkmpdmlcgeoi |
Oficjalny URL | https://chromewebstore.google.com/detail/audible-audio-control/djbhnpbemmoeenglcdojbkmpdmlcgeoi |
Opis | Adds a volume controller to the Audible webplayer. |
Rozmiar pliku | 30.97 KB |
Liczba instalacji | 2,133 |
Aktualna Wersja | 2.0.0 |
Ostatnia Aktualizacja | 2023-09-06 |
Data Publikacji | 2022-05-24 |
Ocena | 5.00/5 Łącznie 30 Oceny |
Deweloper | peterphmikkelsen |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/peterphmikkelsen/audible-volume-control |
Adres URL Strony Pomocy | https://github.com/peterphmikkelsen/audible-volume-control/issues |
Obsługiwane Języki | 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}" } } } |