Dark Horse downloader

Download Dark Horse comic books directly from your digital library web page

什么是Dark Horse downloader?

Dark Horse downloader是由Metalnem开发的Chrome扩展程序,该扩展的主要功能是“Download Dark Horse comic books directly from your digital library web page”。

扩展截图

screenshot

下载Dark Horse downloader扩展crx文件

下载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.                    

扩展基本信息

名称 Dark Horse downloader Dark Horse downloader
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"
    ]
}