Google Podcasts Downloader
Allows you to download podcasts.
Cos'è Google Podcasts Downloader?
Google Podcasts Downloader è un'estensione di Chrome sviluppata da molotochok, e la sua funzione principale è "Allows you to download podcasts.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Podcasts Downloader
Scarica i file di estensione Google Podcasts Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Google Podcasts Downloader |
ID | nmccjgongkpmdkfnjkahjlfphcfmjkgo |
URL Ufficiale | https://chromewebstore.google.com/detail/google-podcasts-downloade/nmccjgongkpmdkfnjkahjlfphcfmjkgo |
Descrizione | Allows you to download podcasts. |
Dimensione del File | 14.48 KB |
Conteggio Installazioni | 6,655 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2024-02-11 |
Data di Pubblicazione | 2022-05-13 |
Valutazione | 4.30/5 Totale 10 Valutazioni |
Sviluppatore | molotochok |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/molotochok/google-podcast-downloader-extension |
Lingue Supportate | 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\/*" ] } ] } |