Dark Horse downloader
Download Dark Horse comic books directly from your digital library web page
Was ist Dark Horse downloader?
Dark Horse downloader ist eine Chrome-Erweiterung, die von Metalnem entwickelt wurde, und ihr Hauptmerkmal ist "Download Dark Horse comic books directly from your digital library web page".
Erweiterungsscreenshots
Dark Horse downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Dark Horse downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Dark Horse downloader |
ID | odciinkioeagogcogbpelccibomlenhl |
Offizielle URL | https://chromewebstore.google.com/detail/dark-horse-downloader/odciinkioeagogcogbpelccibomlenhl |
Beschreibung | Download Dark Horse comic books directly from your digital library web page |
Dateigröße | 12.82 KB |
Installationsanzahl | 231 |
Aktuelle Version | 1.2 |
Letztes Update | 2016-05-28 |
Veröffentlichungsdatum | 2016-05-28 |
Bewertung | 1.40/5 Insgesamt 5 Bewertungen |
Entwickler | Metalnem |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |