Dark Horse downloader
Download Dark Horse comic books directly from your digital library web page
What is Dark Horse downloader?
Dark Horse downloader is a Chrome extension developed by Metalnem, and its main feature is "Download Dark Horse comic books directly from your digital library web page".
Extension Screenshots
Download Dark Horse downloader Extension CRX File
Download Dark Horse downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Dark Horse downloader |
ID | odciinkioeagogcogbpelccibomlenhl |
Official URL | https://chromewebstore.google.com/detail/dark-horse-downloader/odciinkioeagogcogbpelccibomlenhl |
Description | Download Dark Horse comic books directly from your digital library web page |
File Size | 12.82 KB |
Installation Count | 231 |
Current Version | 1.2 |
Last Updated | 2016-05-28 |
Publish Date | 2016-05-28 |
Rating | 1.40/5 Total 5 Ratings |
Developer | Metalnem |
Payment Type | free |
Supported Languages | 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" ] } |