Overcast Downloader
A shortcut to download the audio file from the Overcast webplayer
Wat is Overcast Downloader?
Overcast Downloader is een Chrome-extensie ontwikkeld door TWright, en de belangrijkste functie is "A shortcut to download the audio file from the Overcast webplayer".
Extensie Screenshots
Download het CRX-bestand van de extensie Overcast Downloader
Download Overcast Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Go to the Overcast webplayer for any podcast and click this extension's button. The currently playing podcast will download. It's that simple. No more navigating through the document html to find the audio source element and its src attribute copying that value and pasting it into the url bar hitting enter and then saving that page as an mp3.
Basisinformatie over de Extensie
Naam | Overcast Downloader |
ID | dlnepfckckhaaehhcgkakkgnnkhdlhma |
Officiële URL | https://chromewebstore.google.com/detail/overcast-downloader/dlnepfckckhaaehhcgkakkgnnkhdlhma |
Beschrijving | A shortcut to download the audio file from the Overcast webplayer |
Bestandsgrootte | 16.37 KB |
Aantal Installaties | 651 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2016-11-20 |
Publicatiedatum | 2016-11-20 |
Beoordeling | 4.20/5 Totaal 5 Beoordelingen |
Ontwikkelaar | TWright |
Betalingswijze | free |
Extensiewebsite | https://github.com/tristaaan/OvercastDownloader |
Help Pagina-URL | https://github.com/tristaaan/OvercastDownloader |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Overcast Downloader", "short_name": "Downloader", "description": "A shortcut to download the audio file from the Overcast webplayer", "version": "1.0.2", "browser_action": { "default_icon": "icons\/icon.png", "default_title": "Download podcast" }, "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "permissions": [ "activeTab", "http:\/\/overcast.fm\/*", "https:\/\/overcast.fm\/*" ], "background": { "scripts": [ "src\/background.js" ], "persistent": false } } |