Modrinthify
Redirect Curseforge mod pages to Modrinth and show Modrinth notifications
ما هو Modrinthify؟
Modrinthify هو إضافة Chrome تم تطويرها بواسطة jboi76coolmail، والميزة الرئيسية لها هي "Redirect Curseforge mod pages to Modrinth and show Modrinth notifications".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Modrinthify
قم بتنزيل ملفات الامتداد Modrinthify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" } } |