Google Podcasts Downloader

Allows you to download podcasts.

ما هو Google Podcasts Downloader؟

Google Podcasts Downloader هو إضافة Chrome تم تطويرها بواسطة molotochok، والميزة الرئيسية لها هي "Allows you to download podcasts.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Google Podcasts Downloader

قم بتنزيل ملفات الامتداد Google Podcasts Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Do you want to download your favorite podcasts on Google Podcasts but don't know how? Well, this extension can help you with this task. It simply creates a button that allows you to download the podcast which is currently selected for playback.

If you wish to support my work you can by me a ☕: https://www.buymeacoffee.com/markian98f                    

معلومات أساسية عن التمديد

الاسم Google Podcasts Downloader Google Podcasts Downloader
ID nmccjgongkpmdkfnjkahjlfphcfmjkgo
عنوان URL الرسمي https://chromewebstore.google.com/detail/google-podcasts-downloade/nmccjgongkpmdkfnjkahjlfphcfmjkgo
الوصف Allows you to download podcasts.
حجم الملف 14.48 KB
عدد التثبيتات 6,655
النسخة الحالية 1.1
آخر تحديث 2024-02-11
تاريخ النشر 2022-05-13
تقييم 4.30/5 مجموع تقييمات 10
المطور molotochok
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/molotochok/google-podcast-downloader-extension
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Podcasts Downloader",
    "description": "Allows you to download podcasts.",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "downloads",
        "tabs",
        "management"
    ],
    "icons": {
        "16": "\/images\/icon-16.png",
        "32": "\/images\/icon-32.png",
        "48": "\/images\/icon-48.png",
        "128": "\/images\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "init.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "*:\/\/podcasts.google.com\/*"
            ]
        }
    ]
}