Dark Horse downloader
Download Dark Horse comic books directly from your digital library web page
Wat is Dark Horse downloader?
Dark Horse downloader is een Chrome-extensie ontwikkeld door Metalnem, en de belangrijkste functie is "Download Dark Horse comic books directly from your digital library web page".
Extensie Screenshots
Download het CRX-bestand van de extensie Dark Horse downloader
Download Dark Horse downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Dark Horse downloader |
ID | odciinkioeagogcogbpelccibomlenhl |
Officiële URL | https://chromewebstore.google.com/detail/dark-horse-downloader/odciinkioeagogcogbpelccibomlenhl |
Beschrijving | Download Dark Horse comic books directly from your digital library web page |
Bestandsgrootte | 12.82 KB |
Aantal Installaties | 231 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2016-05-28 |
Publicatiedatum | 2016-05-28 |
Beoordeling | 1.40/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Metalnem |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |