Modrinthify

Redirect Curseforge mod pages to Modrinth and show Modrinth notifications

Qu'est-ce que Modrinthify ?

Modrinthify est une extension Chrome développée par jboi76coolmail, et sa fonction principale est "Redirect Curseforge mod pages to Modrinth and show Modrinth notifications".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Modrinthify

Téléchargez les fichiers d'extension Modrinthify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Modrinthify Modrinthify
ID gjjlcbppchpjacimpkjhoancdbdmpcoc
URL Officiel https://chromewebstore.google.com/detail/modrinthify/gjjlcbppchpjacimpkjhoancdbdmpcoc
Description Redirect Curseforge mod pages to Modrinth and show Modrinth notifications
Taille du Fichier 41.27 KB
Nombre d'Installations 257
Version Actuelle 1.7.1
Dernière Mise à Jour 2023-08-13
Date de Publication 2022-06-06
Évaluation 4.86/5 Total 7 Évaluations
Développeur jboi76coolmail
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/devBoi76/modrinthify
URL de la Page d'Aide https://github.com/devBoi76/modrinthify/issues
Langues Prises en Charge 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"
    }
}