Audible Preview Downloader

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

¿Qué es Audible Preview Downloader?

Audible Preview Downloader es una extensión de Chrome desarrollada por audiobook-samples.org, y su función principal es "Download audiobooks previews from audible.com webpage (that are publicly available free of charge)".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Audible Preview Downloader

Descarga archivos de extensión Audible Preview Downloader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Audible Preview Downloader Audible Preview Downloader
ID lpoeconomamloijkbgmapclmbijnbplk
URL Oficial https://chromewebstore.google.com/detail/audible-preview-downloade/lpoeconomamloijkbgmapclmbijnbplk
Descripción Download audiobooks previews from audible.com webpage (that are publicly available free of charge)
Tamaño del Archivo 15.28 KB
Cantidad de Instalaciones 138
Versión Actual 0.0.1
Última Actualización 2023-01-12
Fecha de Publicación 2023-01-12
Desarrollador audiobook-samples.org
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://audiobook-samples.org/
URL de la Página de Ayuda https://audiobook-samples.org/
URL de la Página de Política de Privacidad https://audiobook-samples.org/privacy.html
Idiomas Soportados 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\/*"
            ]
        }
    ]
}