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
官方網址 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"
    ]
}