Overcast Downloader
A shortcut to download the audio file from the Overcast webplayer
Cos'è Overcast Downloader?
Overcast Downloader è un'estensione di Chrome sviluppata da TWright, e la sua funzione principale è "A shortcut to download the audio file from the Overcast webplayer".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Overcast Downloader
Scarica i file di estensione Overcast 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
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.
Informazioni di Base sull'Estensione
Nome | Overcast Downloader |
ID | dlnepfckckhaaehhcgkakkgnnkhdlhma |
URL Ufficiale | https://chromewebstore.google.com/detail/overcast-downloader/dlnepfckckhaaehhcgkakkgnnkhdlhma |
Descrizione | A shortcut to download the audio file from the Overcast webplayer |
Dimensione del File | 16.37 KB |
Conteggio Installazioni | 651 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2016-11-20 |
Data di Pubblicazione | 2016-11-20 |
Valutazione | 4.20/5 Totale 5 Valutazioni |
Sviluppatore | TWright |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/tristaaan/OvercastDownloader |
URL della Pagina di Aiuto | https://github.com/tristaaan/OvercastDownloader |
Lingue Supportate | 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 } } |