Dark Horse downloader
Download Dark Horse comic books directly from your digital library web page
ما هو Dark Horse downloader؟
Dark Horse downloader هو إضافة Chrome تم تطويرها بواسطة Metalnem، والميزة الرئيسية لها هي "Download Dark Horse comic books directly from your digital library web page".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Dark Horse downloader
قم بتنزيل ملفات الامتداد Dark Horse downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" ] } |