Modrinthify
Redirect Curseforge mod pages to Modrinth and show Modrinth notifications
Apa itu Modrinthify?
Modrinthify adalah ekstensi Chrome yang dikembangkan oleh jboi76coolmail, dan fitur utamanya adalah "Redirect Curseforge mod pages to Modrinth and show Modrinth notifications".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Modrinthify
Unduh file ekstensi Modrinthify dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Modrinthify |
ID | gjjlcbppchpjacimpkjhoancdbdmpcoc |
URL Resmi | https://chromewebstore.google.com/detail/modrinthify/gjjlcbppchpjacimpkjhoancdbdmpcoc |
Deskripsi | Redirect Curseforge mod pages to Modrinth and show Modrinth notifications |
Ukuran File | 41.27 KB |
Jumlah Instalasi | 257 |
Versi Saat Ini | 1.7.1 |
Terakhir Diperbarui | 2023-08-13 |
Tanggal Publikasi | 2022-06-06 |
Penilaian | 4.86/5 Total 7 Penilaian |
Pengembang | jboi76coolmail |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/devBoi76/modrinthify |
URL Halaman Bantuan | https://github.com/devBoi76/modrinthify/issues |
Bahasa yang Didukung | 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" } } |