MangaDex helpers
Useful helper features for MangaDex. More features coming in the future if I have time.
MangaDex helpers क्या है?
MangaDex helpers JesHal द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Useful helper features for MangaDex. More features coming in the future if I have time."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में MangaDex helpers एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |