Google Podcasts Downloader

Allows you to download podcasts.

Google Podcasts Downloaderとは何ですか?

Google Podcasts Downloaderはmolotochokによって開発されたChromeの拡張機能で、その主な機能は「Allows you to download podcasts.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Google Podcasts Downloader拡張機能のCRXファイルをダウンロード

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
Eメール [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\/*"
            ]
        }
    ]
}