Modrinthify

Redirect Curseforge mod pages to Modrinth and show Modrinth notifications

Hvad er Modrinthify?

Modrinthify er en Chrome-udvidelse udviklet af jboi76coolmail, og dens hovedfunktion er "Redirect Curseforge mod pages to Modrinth and show Modrinth notifications".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Modrinthify-udvidelses-CRX-fil

Download Modrinthify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Modrinthify Modrinthify
ID gjjlcbppchpjacimpkjhoancdbdmpcoc
Officiel URL https://chromewebstore.google.com/detail/modrinthify/gjjlcbppchpjacimpkjhoancdbdmpcoc
Beskrivelse Redirect Curseforge mod pages to Modrinth and show Modrinth notifications
Filstørrelse 41.27 KB
Antal Installationer 257
Nuværende Version 1.7.1
Senest Opdateret 2023-08-13
Udgivelsesdato 2022-06-06
Bedømmelse 4.86/5 Samlet 7 Bedømmelser
Udvikler jboi76coolmail
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/devBoi76/modrinthify
Hjælpeside-URL https://github.com/devBoi76/modrinthify/issues
Understøttede Sprog 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"
    }
}