Google Podcasts Downloader
Allows you to download podcasts.
Apa itu Google Podcasts Downloader?
Google Podcasts Downloader adalah ekstensi Chrome yang dikembangkan oleh molotochok, dan fitur utamanya adalah "Allows you to download podcasts.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Google Podcasts Downloader
Unduh file ekstensi Google Podcasts Downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Google Podcasts Downloader |
ID | nmccjgongkpmdkfnjkahjlfphcfmjkgo |
URL Resmi | https://chromewebstore.google.com/detail/google-podcasts-downloade/nmccjgongkpmdkfnjkahjlfphcfmjkgo |
Deskripsi | Allows you to download podcasts. |
Ukuran File | 14.48 KB |
Jumlah Instalasi | 6,655 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2024-02-11 |
Tanggal Publikasi | 2022-05-13 |
Penilaian | 4.30/5 Total 10 Penilaian |
Pengembang | molotochok |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/molotochok/google-podcast-downloader-extension |
Bahasa yang Didukung | 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\/*" ] } ] } |