Dark Horse downloader

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

Apa itu Dark Horse downloader?

Dark Horse downloader adalah ekstensi Chrome yang dikembangkan oleh Metalnem, dan fitur utamanya adalah "Download Dark Horse comic books directly from your digital library web page".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Dark Horse downloader

Unduh file ekstensi Dark Horse downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Dark Horse downloader Dark Horse downloader
ID odciinkioeagogcogbpelccibomlenhl
URL Resmi https://chromewebstore.google.com/detail/dark-horse-downloader/odciinkioeagogcogbpelccibomlenhl
Deskripsi Download Dark Horse comic books directly from your digital library web page
Ukuran File 12.82 KB
Jumlah Instalasi 231
Versi Saat Ini 1.2
Terakhir Diperbarui 2016-05-28
Tanggal Publikasi 2016-05-28
Penilaian 1.40/5 Total 5 Penilaian
Pengembang Metalnem
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}