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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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