Audible Audio Control

Adds a volume controller to the Audible webplayer.

Vad är Audible Audio Control?

Audible Audio Control är en Chrome-tillägg utvecklad av peterphmikkelsen, och dess huvudfunktion är "Adds a volume controller to the Audible webplayer.".

Tilläggsskärmbilder

screenshot

Ladda ner Audible Audio Control-förlängningens CRX-fil

Ladda ner Audible Audio Control-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Audible Audio Control Audible Audio Control
ID djbhnpbemmoeenglcdojbkmpdmlcgeoi
Officiell webbadress https://chromewebstore.google.com/detail/audible-audio-control/djbhnpbemmoeenglcdojbkmpdmlcgeoi
Beskrivning Adds a volume controller to the Audible webplayer.
Filstorlek 30.97 KB
Antal Installationer 2,133
Aktuell Version 2.0.0
Senast Uppdaterad 2023-09-06
Publiceringsdatum 2022-05-24
Betyg 5.00/5 Totalt 30 Betyg
Utvecklare peterphmikkelsen
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/peterphmikkelsen/audible-volume-control
Hjälpsida URL https://github.com/peterphmikkelsen/audible-volume-control/issues
Stödda Språk 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}"
        }
    }
}