Audible Preview Downloader
Download audiobooks previews from audible.com webpage (that are publicly available free of charge)
Cos'è Audible Preview Downloader?
Audible Preview Downloader è un'estensione di Chrome sviluppata da audiobook-samples.org, e la sua funzione principale è "Download audiobooks previews from audible.com webpage (that are publicly available free of charge)".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Audible Preview Downloader
Scarica i file di estensione Audible Preview Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Audible Preview Downloader |
ID | lpoeconomamloijkbgmapclmbijnbplk |
URL Ufficiale | https://chromewebstore.google.com/detail/audible-preview-downloade/lpoeconomamloijkbgmapclmbijnbplk |
Descrizione | Download audiobooks previews from audible.com webpage (that are publicly available free of charge) |
Dimensione del File | 15.28 KB |
Conteggio Installazioni | 138 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2023-01-12 |
Data di Pubblicazione | 2023-01-12 |
Sviluppatore | audiobook-samples.org |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://audiobook-samples.org/ |
URL della Pagina di Aiuto | https://audiobook-samples.org/ |
URL della Pagina della Politica sulla Privacy | https://audiobook-samples.org/privacy.html |
Lingue Supportate | 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\/*" ] } ] } |