Dark Horse downloader
Download Dark Horse comic books directly from your digital library web page
Dark Horse downloader là gì?
Dark Horse downloader là một tiện ích mở rộng Chrome được phát triển bởi Metalnem, và tính năng chính của nó là "Download Dark Horse comic books directly from your digital library web page".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Dark Horse downloader
Tải xuống các tệp mở rộng Dark Horse downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Dark Horse downloader |
ID | odciinkioeagogcogbpelccibomlenhl |
URL Chính Thức | https://chromewebstore.google.com/detail/dark-horse-downloader/odciinkioeagogcogbpelccibomlenhl |
Mô tả | Download Dark Horse comic books directly from your digital library web page |
Kích Thước Tệp | 12.82 KB |
Số Lần Cài Đặt | 231 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2016-05-28 |
Ngày Phát Hành | 2016-05-28 |
Đánh Giá | 1.40/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Metalnem |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |