Google Podcasts Downloader

Allows you to download podcasts.

What is Google Podcasts Downloader?

Google Podcasts Downloader is a Chrome extension developed by molotochok, and its main feature is "Allows you to download podcasts.".

Extension Screenshots

screenshot
screenshot

Download Google Podcasts Downloader Extension CRX File

Download Google Podcasts Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Google Podcasts Downloader Google Podcasts Downloader
ID nmccjgongkpmdkfnjkahjlfphcfmjkgo
Official URL https://chromewebstore.google.com/detail/google-podcasts-downloade/nmccjgongkpmdkfnjkahjlfphcfmjkgo
Description Allows you to download podcasts.
File Size 14.48 KB
Installation Count 6,655
Current Version 1.1
Last Updated 2024-02-11
Publish Date 2022-05-13
Rating 4.30/5 Total 10 Ratings
Developer molotochok
Email [email protected]
Payment Type free
Extension Website https://github.com/molotochok/google-podcast-downloader-extension
Supported Languages 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\/*"
            ]
        }
    ]
}