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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
            ]
        }
    ]
}