MangaDex helpers

Useful helper features for MangaDex. More features coming in the future if I have time.

Qu'est-ce que MangaDex helpers ?

MangaDex helpers est une extension Chrome développée par JesHal, et sa fonction principale est "Useful helper features for MangaDex. More features coming in the future if I have time.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension MangaDex helpers

Téléchargez les fichiers d'extension MangaDex helpers au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom MangaDex helpers MangaDex helpers
ID jkpknfnlhmnecclgdkffojbdpbchlkna
URL Officiel https://chromewebstore.google.com/detail/mangadex-helpers/jkpknfnlhmnecclgdkffojbdpbchlkna
Description Useful helper features for MangaDex. More features coming in the future if I have time.
Taille du Fichier 14.35 KB
Nombre d'Installations 43
Version Actuelle 1.1
Dernière Mise à Jour 2023-11-03
Date de Publication 2023-10-29
Évaluation 5.00/5 Total 1 Évaluations
Développeur JesHal
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}