Google Podcasts Downloader
Allows you to download podcasts.
Qu'est-ce que Google Podcasts Downloader ?
Google Podcasts Downloader est une extension Chrome développée par molotochok, et sa fonction principale est "Allows you to download podcasts.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Google Podcasts Downloader
Téléchargez les fichiers d'extension Google Podcasts Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Google Podcasts Downloader |
ID | nmccjgongkpmdkfnjkahjlfphcfmjkgo |
URL Officiel | https://chromewebstore.google.com/detail/google-podcasts-downloade/nmccjgongkpmdkfnjkahjlfphcfmjkgo |
Description | Allows you to download podcasts. |
Taille du Fichier | 14.48 KB |
Nombre d'Installations | 6,655 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2024-02-11 |
Date de Publication | 2022-05-13 |
Évaluation | 4.30/5 Total 10 Évaluations |
Développeur | molotochok |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/molotochok/google-podcast-downloader-extension |
Langues Prises en Charge | 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\/*" ] } ] } |