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)".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Audible Preview Downloader

قم بتنزيل ملفات الامتداد Audible Preview Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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/
عنوان صفحة المساعدة https://audiobook-samples.org/
عنوان صفحة سياسة الخصوصية 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\/*"
            ]
        }
    ]
}