Dark Horse downloader

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

Hvad er Dark Horse downloader?

Dark Horse downloader er en Chrome-udvidelse udviklet af Metalnem, og dens hovedfunktion er "Download Dark Horse comic books directly from your digital library web page".

Udvidelsesskærmbilleder

screenshot

Download Dark Horse downloader-udvidelses-CRX-fil

Download Dark Horse downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Dark Horse downloader Dark Horse downloader
ID odciinkioeagogcogbpelccibomlenhl
Officiel URL https://chromewebstore.google.com/detail/dark-horse-downloader/odciinkioeagogcogbpelccibomlenhl
Beskrivelse Download Dark Horse comic books directly from your digital library web page
Filstørrelse 12.82 KB
Antal Installationer 231
Nuværende Version 1.2
Senest Opdateret 2016-05-28
Udgivelsesdato 2016-05-28
Bedømmelse 1.40/5 Samlet 5 Bedømmelser
Udvikler Metalnem
Betalingsmetode free
Understøttede Sprog 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"
    ]
}