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 |
| 公式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 |
| Eメール | [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\/*"
]
}
]
} | |