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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |