MangaDex helpers
Useful helper features for MangaDex. More features coming in the future if I have time.
¿Qué es MangaDex helpers?
MangaDex helpers es una extensión de Chrome desarrollada por JesHal, y su función principal es "Useful helper features for MangaDex. More features coming in the future if I have time.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión MangaDex helpers
Descarga archivos de extensión MangaDex helpers en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | jkpknfnlhmnecclgdkffojbdpbchlkna |
URL Oficial | https://chromewebstore.google.com/detail/mangadex-helpers/jkpknfnlhmnecclgdkffojbdpbchlkna |
Descripción | Useful helper features for MangaDex. More features coming in the future if I have time. |
Tamaño del Archivo | 14.35 KB |
Cantidad de Instalaciones | 43 |
Versión Actual | 1.1 |
Última Actualización | 2023-11-03 |
Fecha de Publicación | 2023-10-29 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | JesHal |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |