Audible Preview Downloader

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

What is Audible Preview Downloader?

Audible Preview Downloader is a Chrome extension developed by audiobook-samples.org, and its main feature is "Download audiobooks previews from audible.com webpage (that are publicly available free of charge)".

Extension Screenshots

screenshot

Download Audible Preview Downloader Extension CRX File

Download Audible Preview Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Audible Preview Downloader Audible Preview Downloader
ID lpoeconomamloijkbgmapclmbijnbplk
Official URL https://chromewebstore.google.com/detail/audible-preview-downloade/lpoeconomamloijkbgmapclmbijnbplk
Description Download audiobooks previews from audible.com webpage (that are publicly available free of charge)
File Size 15.28 KB
Installation Count 138
Current Version 0.0.1
Last Updated 2023-01-12
Publish Date 2023-01-12
Developer audiobook-samples.org
Email [email protected]
Payment Type free
Extension Website https://audiobook-samples.org/
Help Page URL https://audiobook-samples.org/
Privacy Policy Page URL https://audiobook-samples.org/privacy.html
Supported Languages 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\/*"
            ]
        }
    ]
}