MangaDex helpers
Useful helper features for MangaDex. More features coming in the future if I have time.
MangaDex helpersคืออะไร?
MangaDex helpers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JesHal และคุณลักษณะหลักของมันคือ "Useful helper features for MangaDex. More features coming in the future if I have time."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MangaDex helpers
ดาวน์โหลดไฟล์ส่วนขยาย MangaDex helpers ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MangaDex helpers |
ID | jkpknfnlhmnecclgdkffojbdpbchlkna |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mangadex-helpers/jkpknfnlhmnecclgdkffojbdpbchlkna |
คำอธิบาย | Useful helper features for MangaDex. More features coming in the future if I have time. |
ขนาดไฟล์ | 14.35 KB |
จำนวนการติดตั้ง | 43 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2023-11-03 |
วันที่เผยแพร่ | 2023-10-29 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | JesHal |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" } } |