Google Podcasts Downloader
Allows you to download podcasts.
Vad är Google Podcasts Downloader?
Google Podcasts Downloader är en Chrome-tillägg utvecklad av molotochok, och dess huvudfunktion är "Allows you to download podcasts.".
Tilläggsskärmbilder
Ladda ner Google Podcasts Downloader-förlängningens CRX-fil
Ladda ner Google Podcasts Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | nmccjgongkpmdkfnjkahjlfphcfmjkgo |
| Officiell webbadress | https://chromewebstore.google.com/detail/google-podcasts-downloade/nmccjgongkpmdkfnjkahjlfphcfmjkgo |
| Beskrivning | Allows you to download podcasts. |
| Filstorlek | 14.48 KB |
| Antal Installationer | 6,655 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2024-02-11 |
| Publiceringsdatum | 2022-05-13 |
| Betyg | 4.30/5 Totalt 10 Betyg |
| Utvecklare | molotochok |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/molotochok/google-podcast-downloader-extension |
| Stödda Språk | 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\/*"
]
}
]
} | |