Overcast Downloader
A shortcut to download the audio file from the Overcast webplayer
Was ist Overcast Downloader?
Overcast Downloader ist eine Chrome-Erweiterung, die von TWright entwickelt wurde, und ihr Hauptmerkmal ist "A shortcut to download the audio file from the Overcast webplayer".
Erweiterungsscreenshots
Overcast Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Overcast Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Overcast Downloader |
ID | dlnepfckckhaaehhcgkakkgnnkhdlhma |
Offizielle URL | https://chromewebstore.google.com/detail/overcast-downloader/dlnepfckckhaaehhcgkakkgnnkhdlhma |
Beschreibung | A shortcut to download the audio file from the Overcast webplayer |
Dateigröße | 16.37 KB |
Installationsanzahl | 651 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2016-11-20 |
Veröffentlichungsdatum | 2016-11-20 |
Bewertung | 4.20/5 Insgesamt 5 Bewertungen |
Entwickler | TWright |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/tristaaan/OvercastDownloader |
Hilfeseite URL | https://github.com/tristaaan/OvercastDownloader |
Unterstützte Sprachen | 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 } } |