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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |