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)”。

扩展截图

screenshot

下载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.                    

扩展基本信息

名称 Audible Preview Downloader 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\/*"
            ]
        }
    ]
}