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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}