Audible Control

Easily control the speed of your audible audiobook in the cloud player.

Was ist Audible Control?

Audible Control ist eine Chrome-Erweiterung, die von JWB inc entwickelt wurde, und ihr Hauptmerkmal ist "Easily control the speed of your audible audiobook in the cloud player.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Audible Control-Erweiterungs-CRX-Datei herunterladen

Laden Sie Audible 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

                        Use Audible Control to easily control the playback speed of your favorite audiobooks on Audible. This extension simply adds buttons that allow you to control the speed from 0.5 (half the normal speed), to 4.5x (four and half times the normal speed of playback). 

This extension also keeps your desired speed per audiobook!. 

Currently this works for the following audible sites. 

http://www.audible.com
http://www.audible.co.uk
http://www.audible.ca
http://www.audible.com.au
http://www.audible.co.jp
http://www.audible.fr

If we are missing any sites - please let us know!

Note: We are not affiliated or an official Audible extension. This extension was independently developed for use with Audible.                    

Grundlegende Informationen zur Erweiterung

Name Audible Control Audible Control
ID glogljhklaiimlocpigpigckeipgekkm
Offizielle URL https://chromewebstore.google.com/detail/audible-control/glogljhklaiimlocpigpigckeipgekkm
Beschreibung Easily control the speed of your audible audiobook in the cloud player.
Dateigröße 6.6 KB
Installationsanzahl 2,080
Aktuelle Version 0.2
Letztes Update 2020-04-08
Veröffentlichungsdatum 2020-04-08
Bewertung 4.38/5 Insgesamt 13 Bewertungen
Entwickler JWB inc
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Audible Control",
    "version": "0.2",
    "permissions": [
        "storage"
    ],
    "description": "Easily control the speed of your audible audiobook in the cloud player.",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.audible.co.uk\/webplayer*",
                "*:\/\/*.audible.com\/webplayer*",
                "*:\/\/*.audible.ca\/webplayer*",
                "*:\/\/*.audible.com.au\/webplayer*",
                "*:\/\/*.audible.co.jp\/webplayer*",
                "*:\/\/*.audible.fr\/webplayer*",
                "*:\/\/*.audible.de\/webplayer*",
                "*:\/\/*.audible.es\/webplayer*"
            ],
            "js": [
                "audible_playbackrate.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}