Google Podcasts Downloader

Allows you to download podcasts.

Google Podcasts Downloader là gì?

Google Podcasts Downloader là một tiện ích mở rộng Chrome được phát triển bởi molotochok, và tính năng chính của nó là "Allows you to download podcasts.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Podcasts Downloader

Tải xuống các tệp mở rộng Google Podcasts Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Podcasts Downloader Google Podcasts Downloader
ID nmccjgongkpmdkfnjkahjlfphcfmjkgo
URL Chính Thức https://chromewebstore.google.com/detail/google-podcasts-downloade/nmccjgongkpmdkfnjkahjlfphcfmjkgo
Mô tả Allows you to download podcasts.
Kích Thước Tệp 14.48 KB
Số Lần Cài Đặt 6,655
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2024-02-11
Ngày Phát Hành 2022-05-13
Đánh Giá 4.30/5 Tổng số 10 Đánh Giá
Nhà Phát Triển molotochok
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/molotochok/google-podcast-downloader-extension
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}