Audible Preview Downloader
Download audiobooks previews from audible.com webpage (that are publicly available free of charge)
Audible Preview Downloaderคืออะไร?
Audible Preview Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย audiobook-samples.org และคุณลักษณะหลักของมันคือ "Download audiobooks previews from audible.com webpage (that are publicly available free of charge)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Audible Preview Downloader
ดาวน์โหลดไฟล์ส่วนขยาย Audible Preview Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Audible Preview Downloader |
ID | lpoeconomamloijkbgmapclmbijnbplk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/audible-preview-downloade/lpoeconomamloijkbgmapclmbijnbplk |
คำอธิบาย | Download audiobooks previews from audible.com webpage (that are publicly available free of charge) |
ขนาดไฟล์ | 15.28 KB |
จำนวนการติดตั้ง | 138 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2023-01-12 |
วันที่เผยแพร่ | 2023-01-12 |
ผู้พัฒนา | audiobook-samples.org |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://audiobook-samples.org/ |
URL หน้าช่วยเหลือ | https://audiobook-samples.org/ |
URL หน้านโยบายความเป็นส่วนตัว | https://audiobook-samples.org/privacy.html |
ภาษาที่รองรับ | 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\/*" ] } ] } |