Overcast Downloader

A shortcut to download the audio file from the Overcast webplayer

Что такое Overcast Downloader?

Overcast Downloader - это расширение Chrome, разработанное TWright, и его основная функция - "A shortcut to download the audio file from the Overcast webplayer".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Overcast Downloader

Скачайте файлы расширений Overcast Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Overcast Downloader Overcast Downloader
ID dlnepfckckhaaehhcgkakkgnnkhdlhma
Официальный URL https://chromewebstore.google.com/detail/overcast-downloader/dlnepfckckhaaehhcgkakkgnnkhdlhma
Описание A shortcut to download the audio file from the Overcast webplayer
Размер файла 16.37 KB
Количество установок 651
Текущая Версия 1.0.2
Последнее Обновление 2016-11-20
Дата публикации 2016-11-20
Рейтинг 4.20/5 Всего 5 оценок
Разработчик TWright
Тип оплаты free
Официальный сайт расширения https://github.com/tristaaan/OvercastDownloader
URL страницы помощи https://github.com/tristaaan/OvercastDownloader
Поддерживаемые языки 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
    }
}