MangaDex helpers
Useful helper features for MangaDex. More features coming in the future if I have time.
MangaDex helpers là gì?
MangaDex helpers là một tiện ích mở rộng Chrome được phát triển bởi JesHal, và tính năng chính của nó là "Useful helper features for MangaDex. More features coming in the future if I have time.".
Ả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 MangaDex helpers
Tải xuống các tệp mở rộng MangaDex helpers 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
I got annoyed at the lack of search features in MangaDex, especially when trying to find something with lots of chapters for binge-reading so I went ahead and made this extension. Currently it only displays the highest chapter number for the manga in search page results (orange number before manga title). It uses Chapter Language Filter from MangaDex user settings to decide which languages chapters to count. Theoretically there may be some rare cases where it gives a wrong value but I haven't encountered any yet. Be aware that this only displays the highest chapter number for the selected languages, it does not count the amount of chapters, so for example if there is a manga with only one uploaded chapter but its chapter number is 96 then this extension displays the number 96.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | MangaDex helpers |
ID | jkpknfnlhmnecclgdkffojbdpbchlkna |
URL Chính Thức | https://chromewebstore.google.com/detail/mangadex-helpers/jkpknfnlhmnecclgdkffojbdpbchlkna |
Mô tả | Useful helper features for MangaDex. More features coming in the future if I have time. |
Kích Thước Tệp | 14.35 KB |
Số Lần Cài Đặt | 43 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2023-11-03 |
Ngày Phát Hành | 2023-10-29 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | JesHal |
[email protected] | |
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": 3, "name": "MangaDex helpers", "description": "Useful helper features for MangaDex. More features coming in the future if I have time.", "version": "1.1", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mangadex.org\/titles*", "https:\/\/mangadex.org\/search*" ], "js": [ "helpers.js" ] } ], "action": { "default_icon": "icon128.png", "default_title": "MangaDex helpers" } } |