Modrinthify
Redirect Curseforge mod pages to Modrinth and show Modrinth notifications
Modrinthify क्या है?
Modrinthify jboi76coolmail द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirect Curseforge mod pages to Modrinth and show Modrinth notifications"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Modrinthify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
When looking at Minecraft mods on curseforge.com, Modrinthify automatically searches modrinth.com for the mod and shows you a redirect button if it finds it. If you click on that button you will be taken to the mod's Modrinth project page It also does the same on spigotmc.org The extension also show modrinth notifications in the browser toolbar
एक्सटेंशन की मूल जानकारी
नाम | Modrinthify |
ID | gjjlcbppchpjacimpkjhoancdbdmpcoc |
आधिकारिक URL | https://chromewebstore.google.com/detail/modrinthify/gjjlcbppchpjacimpkjhoancdbdmpcoc |
विवरण | Redirect Curseforge mod pages to Modrinth and show Modrinth notifications |
फ़ाइल का आकार | 41.27 KB |
स्थापना संख्या | 257 |
वर्तमान संस्करण | 1.7.1 |
अंतिम अपडेट | 2023-08-13 |
प्रकाशन तिथि | 2022-06-06 |
रेटिंग | 4.86/5 कुल 7 रेटिंग्स |
डेवलपर | jboi76coolmail |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/devBoi76/modrinthify |
सहायता पृष्ठ URL | https://github.com/devBoi76/modrinthify/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Modrinthify", "version": "1.7.1", "description": "Redirect Curseforge mod pages to Modrinth and show Modrinth notifications", "icons": { "48": "icons\/favicon.png" }, "host_permissions": [ "https:\/\/api.modrinth.com\/v2\/*" ], "permissions": [ "storage", "alarms" ], "content_scripts": [ { "matches": [ "*:\/\/*.curseforge.com\/minecraft\/*" ], "js": [ "main.js" ] }, { "matches": [ "*:\/\/*.spigotmc.org\/*" ], "js": [ "spigot.js" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/kofilogo.png" ], "matches": [ "https:\/\/*.curseforge.com\/*", "https:\/\/*.spigotmc.org\/*" ] } ], "action": { "default_icon": "icons\/favicon.png", "default_title": "Modrinthify", "default_popup": "html\/main.html" }, "background": { "service_worker": "background.js" }, "options_ui": { "page": "html\/preferences.html" } } |