Google Podcasts Downloader

Allows you to download podcasts.

Wat is Google Podcasts Downloader?

Google Podcasts Downloader is een Chrome-extensie ontwikkeld door molotochok, en de belangrijkste functie is "Allows you to download podcasts.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Google Podcasts Downloader

Download Google Podcasts Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Google Podcasts Downloader Google Podcasts Downloader
ID nmccjgongkpmdkfnjkahjlfphcfmjkgo
Officiële URL https://chromewebstore.google.com/detail/google-podcasts-downloade/nmccjgongkpmdkfnjkahjlfphcfmjkgo
Beschrijving Allows you to download podcasts.
Bestandsgrootte 14.48 KB
Aantal Installaties 6,655
Huidige Versie 1.1
Laatst Bijgewerkt 2024-02-11
Publicatiedatum 2022-05-13
Beoordeling 4.30/5 Totaal 10 Beoordelingen
Ontwikkelaar molotochok
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/molotochok/google-podcast-downloader-extension
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}