Dark Horse downloader

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

Cos'è Dark Horse downloader?

Dark Horse downloader è un'estensione di Chrome sviluppata da Metalnem, e la sua funzione principale è "Download Dark Horse comic books directly from your digital library web page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Dark Horse downloader

Scarica i file di estensione Dark Horse downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Dark Horse downloader Dark Horse downloader
ID odciinkioeagogcogbpelccibomlenhl
URL Ufficiale https://chromewebstore.google.com/detail/dark-horse-downloader/odciinkioeagogcogbpelccibomlenhl
Descrizione Download Dark Horse comic books directly from your digital library web page
Dimensione del File 12.82 KB
Conteggio Installazioni 231
Versione Corrente 1.2
Ultimo Aggiornamento 2016-05-28
Data di Pubblicazione 2016-05-28
Valutazione 1.40/5 Totale 5 Valutazioni
Sviluppatore Metalnem
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}