Dark Horse downloader

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

Co to jest Dark Horse downloader?

Dark Horse downloader to rozszerzenie Chrome opracowane przez Metalnem, a jego główną funkcją jest „Download Dark Horse comic books directly from your digital library web page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Dark Horse downloader

Pobierz pliki rozszerzeń Dark Horse downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Dark Horse downloader Dark Horse downloader
ID odciinkioeagogcogbpelccibomlenhl
Oficjalny URL https://chromewebstore.google.com/detail/dark-horse-downloader/odciinkioeagogcogbpelccibomlenhl
Opis Download Dark Horse comic books directly from your digital library web page
Rozmiar pliku 12.82 KB
Liczba instalacji 231
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2016-05-28
Data Publikacji 2016-05-28
Ocena 1.40/5 Łącznie 5 Oceny
Deweloper Metalnem
Typ Płatności free
Obsługiwane Języki 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"
    ]
}