Audible Preview Downloader
Download audiobooks previews from audible.com webpage (that are publicly available free of charge)
什麼是Audible Preview Downloader?
Audible Preview Downloader是由audiobook-samples.org開發的Chrome擴展程式,該擴展的主要功能是“Download audiobooks previews from audible.com webpage (that are publicly available free of charge)”。
擴展截圖
下載Audible Preview Downloader擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | lpoeconomamloijkbgmapclmbijnbplk |
| 官方網址 | 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\/*"
]
}
]
} | |