Modrinthify
Redirect Curseforge mod pages to Modrinth and show Modrinth notifications
Cos'è Modrinthify?
Modrinthify è un'estensione di Chrome sviluppata da jboi76coolmail, e la sua funzione principale è "Redirect Curseforge mod pages to Modrinth and show Modrinth notifications".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Modrinthify
Scarica i file di estensione Modrinthify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Modrinthify |
ID | gjjlcbppchpjacimpkjhoancdbdmpcoc |
URL Ufficiale | https://chromewebstore.google.com/detail/modrinthify/gjjlcbppchpjacimpkjhoancdbdmpcoc |
Descrizione | Redirect Curseforge mod pages to Modrinth and show Modrinth notifications |
Dimensione del File | 41.27 KB |
Conteggio Installazioni | 257 |
Versione Corrente | 1.7.1 |
Ultimo Aggiornamento | 2023-08-13 |
Data di Pubblicazione | 2022-06-06 |
Valutazione | 4.86/5 Totale 7 Valutazioni |
Sviluppatore | jboi76coolmail |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/devBoi76/modrinthify |
URL della Pagina di Aiuto | https://github.com/devBoi76/modrinthify/issues |
Lingue Supportate | 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" } } |