Audible Audio Control
Adds a volume controller to the Audible webplayer.
Wat is Audible Audio Control?
Audible Audio Control is een Chrome-extensie ontwikkeld door peterphmikkelsen, en de belangrijkste functie is "Adds a volume controller to the Audible webplayer.".
Extensie Screenshots
Download het CRX-bestand van de extensie Audible Audio Control
Download Audible Audio Control-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Audible Audio Control |
ID | djbhnpbemmoeenglcdojbkmpdmlcgeoi |
Officiële URL | https://chromewebstore.google.com/detail/audible-audio-control/djbhnpbemmoeenglcdojbkmpdmlcgeoi |
Beschrijving | Adds a volume controller to the Audible webplayer. |
Bestandsgrootte | 30.97 KB |
Aantal Installaties | 2,133 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2023-09-06 |
Publicatiedatum | 2022-05-24 |
Beoordeling | 5.00/5 Totaal 30 Beoordelingen |
Ontwikkelaar | peterphmikkelsen |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/peterphmikkelsen/audible-volume-control |
Help Pagina-URL | https://github.com/peterphmikkelsen/audible-volume-control/issues |
Ondersteunde Talen | 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}" } } } |