Overcast Downloader

A shortcut to download the audio file from the Overcast webplayer

Hvad er Overcast Downloader?

Overcast Downloader er en Chrome-udvidelse udviklet af TWright, og dens hovedfunktion er "A shortcut to download the audio file from the Overcast webplayer".

Udvidelsesskærmbilleder

screenshot

Download Overcast Downloader-udvidelses-CRX-fil

Download Overcast Downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Overcast Downloader Overcast Downloader
ID dlnepfckckhaaehhcgkakkgnnkhdlhma
Officiel URL https://chromewebstore.google.com/detail/overcast-downloader/dlnepfckckhaaehhcgkakkgnnkhdlhma
Beskrivelse A shortcut to download the audio file from the Overcast webplayer
Filstørrelse 16.37 KB
Antal Installationer 651
Nuværende Version 1.0.2
Senest Opdateret 2016-11-20
Udgivelsesdato 2016-11-20
Bedømmelse 4.20/5 Samlet 5 Bedømmelser
Udvikler TWright
Betalingsmetode free
Udvidelseswebsted https://github.com/tristaaan/OvercastDownloader
Hjælpeside-URL https://github.com/tristaaan/OvercastDownloader
Understøttede Sprog 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
    }
}