Audible Audio Control

Adds a volume controller to the Audible webplayer.

Was ist Audible Audio Control?

Audible Audio Control ist eine Chrome-Erweiterung, die von peterphmikkelsen entwickelt wurde, und ihr Hauptmerkmal ist "Adds a volume controller to the Audible webplayer.".

Erweiterungsscreenshots

screenshot

Audible Audio Control-Erweiterungs-CRX-Datei herunterladen

Laden Sie Audible Audio Control-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Audible Audio Control Audible Audio Control
ID djbhnpbemmoeenglcdojbkmpdmlcgeoi
Offizielle URL https://chromewebstore.google.com/detail/audible-audio-control/djbhnpbemmoeenglcdojbkmpdmlcgeoi
Beschreibung Adds a volume controller to the Audible webplayer.
Dateigröße 30.97 KB
Installationsanzahl 2,133
Aktuelle Version 2.0.0
Letztes Update 2023-09-06
Veröffentlichungsdatum 2022-05-24
Bewertung 5.00/5 Insgesamt 30 Bewertungen
Entwickler peterphmikkelsen
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/peterphmikkelsen/audible-volume-control
Hilfeseite URL https://github.com/peterphmikkelsen/audible-volume-control/issues
Unterstützte Sprachen 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}"
        }
    }
}