Audible Preview Downloader
Download audiobooks previews from audible.com webpage (that are publicly available free of charge)
Audible Preview Downloader là gì?
Audible Preview Downloader là một tiện ích mở rộng Chrome được phát triển bởi audiobook-samples.org, và tính năng chính của nó là "Download audiobooks previews from audible.com webpage (that are publicly available free of charge)".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Audible Preview Downloader
Tải xuống các tệp mở rộng Audible Preview Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Audible Preview Downloader |
ID | lpoeconomamloijkbgmapclmbijnbplk |
URL Chính Thức | https://chromewebstore.google.com/detail/audible-preview-downloade/lpoeconomamloijkbgmapclmbijnbplk |
Mô tả | Download audiobooks previews from audible.com webpage (that are publicly available free of charge) |
Kích Thước Tệp | 15.28 KB |
Số Lần Cài Đặt | 138 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2023-01-12 |
Ngày Phát Hành | 2023-01-12 |
Nhà Phát Triển | audiobook-samples.org |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://audiobook-samples.org/ |
URL Trang Trợ Giúp | https://audiobook-samples.org/ |
URL Trang Chính Sách Bảo Mật | https://audiobook-samples.org/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |