Dark Horse downloader
Download Dark Horse comic books directly from your digital library web page
Dark Horse downloader क्या है?
Dark Horse downloader Metalnem द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download Dark Horse comic books directly from your digital library web page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Dark Horse downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Dark Horse downloader |
ID | odciinkioeagogcogbpelccibomlenhl |
आधिकारिक URL | https://chromewebstore.google.com/detail/dark-horse-downloader/odciinkioeagogcogbpelccibomlenhl |
विवरण | Download Dark Horse comic books directly from your digital library web page |
फ़ाइल का आकार | 12.82 KB |
स्थापना संख्या | 231 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2016-05-28 |
प्रकाशन तिथि | 2016-05-28 |
रेटिंग | 1.40/5 कुल 5 रेटिंग्स |
डेवलपर | Metalnem |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" ] } |