Dark Horse downloader
Download Dark Horse comic books directly from your digital library web page
Qu'est-ce que Dark Horse downloader ?
Dark Horse downloader est une extension Chrome développée par Metalnem, et sa fonction principale est "Download Dark Horse comic books directly from your digital library web page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Dark Horse downloader
Téléchargez les fichiers d'extension Dark Horse downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Dark Horse downloader |
ID | odciinkioeagogcogbpelccibomlenhl |
URL Officiel | https://chromewebstore.google.com/detail/dark-horse-downloader/odciinkioeagogcogbpelccibomlenhl |
Description | Download Dark Horse comic books directly from your digital library web page |
Taille du Fichier | 12.82 KB |
Nombre d'Installations | 231 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2016-05-28 |
Date de Publication | 2016-05-28 |
Évaluation | 1.40/5 Total 5 Évaluations |
Développeur | Metalnem |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |