Butterfly Cloud Downloader
Downloads an entire Butterfly Archive with one click
Что такое Butterfly Cloud Downloader?
Butterfly Cloud Downloader - это расширение Chrome, разработанное https://www.ultrasoundoftheweek.com, и его основная функция - "Downloads an entire Butterfly Archive with one click".
Снимки экрана расширения
Скачать файл CRX расширения Butterfly Cloud Downloader
Скачайте файлы расширений Butterfly Cloud Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Let's face it, downloading an entire archive on Butterfly Cloud is painful. This extension makes it a one click dream. To use: first navigate to an archive on the Butterfly Cloud, then click the Butterfly Cloud Downloader button. Boom, done. Icon used for this extension is Butterfly by Hea Poh Lin from the Noun Project
Основная информация о расширении
Название | Butterfly Cloud Downloader |
ID | bpgncphfhlodchilcolmadpagamijbmm |
Официальный URL | https://chromewebstore.google.com/detail/butterfly-cloud-downloade/bpgncphfhlodchilcolmadpagamijbmm |
Описание | Downloads an entire Butterfly Archive with one click |
Размер файла | 18.72 KB |
Количество установок | 61 |
Текущая Версия | 0.0.1.3 |
Последнее Обновление | 2019-04-28 |
Дата публикации | 2019-04-28 |
Разработчик | https://www.ultrasoundoftheweek.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Butterfly Cloud Downloader", "version": "0.0.1.3", "manifest_version": 2, "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "description": "Downloads an entire Butterfly Archive with one click", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/cloud.butterflynetwork.com\/*\/archives\/*\/studies\/*\/images\/*" ], "js": [ "verifyloaded.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "downloads" ], "browser_action": { "default_popup": "popup.html" } } |