Google Podcasts Downloader

Allows you to download podcasts.

Was ist Google Podcasts Downloader?

Google Podcasts Downloader ist eine Chrome-Erweiterung, die von molotochok entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to download podcasts.".

Erweiterungsscreenshots

screenshot
screenshot

Google Podcasts Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Podcasts Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Google Podcasts Downloader Google Podcasts Downloader
ID nmccjgongkpmdkfnjkahjlfphcfmjkgo
Offizielle URL https://chromewebstore.google.com/detail/google-podcasts-downloade/nmccjgongkpmdkfnjkahjlfphcfmjkgo
Beschreibung Allows you to download podcasts.
Dateigröße 14.48 KB
Installationsanzahl 6,655
Aktuelle Version 1.1
Letztes Update 2024-02-11
Veröffentlichungsdatum 2022-05-13
Bewertung 4.30/5 Insgesamt 10 Bewertungen
Entwickler molotochok
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/molotochok/google-podcast-downloader-extension
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}