MangaDex helpers
Useful helper features for MangaDex. More features coming in the future if I have time.
什么是MangaDex helpers?
MangaDex helpers是由JesHal开发的Chrome扩展程序,该扩展的主要功能是“Useful helper features for MangaDex. More features coming in the future if I have time.”。
扩展截图
下载MangaDex helpers扩展crx文件
下载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" } } |