Audible Audio Control
Adds a volume controller to the Audible webplayer.
Qu'est-ce que Audible Audio Control ?
Audible Audio Control est une extension Chrome développée par peterphmikkelsen, et sa fonction principale est "Adds a volume controller to the Audible webplayer.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Audible Audio Control
Téléchargez les fichiers d'extension Audible Audio Control au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Audible Audio Control |
ID | djbhnpbemmoeenglcdojbkmpdmlcgeoi |
URL Officiel | https://chromewebstore.google.com/detail/audible-audio-control/djbhnpbemmoeenglcdojbkmpdmlcgeoi |
Description | Adds a volume controller to the Audible webplayer. |
Taille du Fichier | 30.97 KB |
Nombre d'Installations | 2,133 |
Version Actuelle | 2.0.0 |
Dernière Mise à Jour | 2023-09-06 |
Date de Publication | 2022-05-24 |
Évaluation | 5.00/5 Total 30 Évaluations |
Développeur | peterphmikkelsen |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/peterphmikkelsen/audible-volume-control |
URL de la Page d'Aide | https://github.com/peterphmikkelsen/audible-volume-control/issues |
Langues Prises en Charge | 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}" } } } |