Audible Preview Downloader

Download audiobooks previews from audible.com webpage (that are publicly available free of charge)

Qu'est-ce que Audible Preview Downloader ?

Audible Preview Downloader est une extension Chrome développée par audiobook-samples.org, et sa fonction principale est "Download audiobooks previews from audible.com webpage (that are publicly available free of charge)".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Audible Preview Downloader

Téléchargez les fichiers d'extension Audible Preview Downloader 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.com (as well as audible.de, audible.fr, etc.) webpage provides all users (with or without login) free samples of their audiobooks, which are usually 5 min long. The link to mp3 file of the sample is available on their webpage, but not directly visible to users. This extension adds a button to the page that points to this download link directly. Also, when a user visits several audiobook pages, those links are collected as the list of downloadable links that can be processed by user on their local machine later on.                    

Informations de Base sur l'Extension

Nom Audible Preview Downloader Audible Preview Downloader
ID lpoeconomamloijkbgmapclmbijnbplk
URL Officiel https://chromewebstore.google.com/detail/audible-preview-downloade/lpoeconomamloijkbgmapclmbijnbplk
Description Download audiobooks previews from audible.com webpage (that are publicly available free of charge)
Taille du Fichier 15.28 KB
Nombre d'Installations 138
Version Actuelle 0.0.1
Dernière Mise à Jour 2023-01-12
Date de Publication 2023-01-12
Développeur audiobook-samples.org
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://audiobook-samples.org/
URL de la Page d'Aide https://audiobook-samples.org/
URL de la Page de Politique de Confidentialité https://audiobook-samples.org/privacy.html
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Audible Preview Downloader",
    "description": "Download audiobooks previews from audible.com webpage (that are publicly available free of charge)",
    "version": "0.0.1",
    "action": {
        "default_popup": "report.html",
        "default_icon": "icon128.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/www.audible.com\/*",
                "https:\/\/www.audible.de\/*",
                "https:\/\/www.audible.es\/*",
                "https:\/\/www.audible.fr\/*",
                "https:\/\/www.audible.it\/*"
            ]
        }
    ]
}