Dark Horse downloader
Download Dark Horse comic books directly from your digital library web page
Что такое Dark Horse downloader?
Dark Horse downloader - это расширение Chrome, разработанное Metalnem, и его основная функция - "Download Dark Horse comic books directly from your digital library web page".
Снимки экрана расширения
Скачать файл CRX расширения Dark Horse downloader
Скачайте файлы расширений Dark Horse downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Go to your digital library page (gallery view must be selected, so the URL is https://digital.darkhorse.com/library/?display_mode=gallery), and click on the download icon next to the comic book you want to save.
Comics are downloaded as a tar archive that is not compatible with other comic book readers, so you have to convert them using Dark Horse converter (https://github.com/Metalnem/dark-horse-converter) before you can open them in the reader of your choice. Основная информация о расширении
| Название | |
| ID | odciinkioeagogcogbpelccibomlenhl |
| Официальный URL | https://chromewebstore.google.com/detail/dark-horse-downloader/odciinkioeagogcogbpelccibomlenhl |
| Описание | Download Dark Horse comic books directly from your digital library web page |
| Размер файла | 12.82 KB |
| Количество установок | 231 |
| Текущая Версия | 1.2 |
| Последнее Обновление | 2016-05-28 |
| Дата публикации | 2016-05-28 |
| Рейтинг | 1.40/5 Всего 5 оценок |
| Разработчик | Metalnem |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Dark Horse downloader",
"description": "Download Dark Horse comic books directly from your digital library web page",
"version": "1.2",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/digital.darkhorse.com\/library\/*"
],
"js": [
"main.js"
],
"css": [
"style.css"
]
}
],
"icons": {
"128": "icon-128.png"
},
"permissions": [
"downloads",
"notifications"
]
} | |