Modrinthify

Redirect Curseforge mod pages to Modrinth and show Modrinth notifications

O que é Modrinthify?

Modrinthify é uma extensão do Chrome desenvolvida por jboi76coolmail, e sua principal característica é "Redirect Curseforge mod pages to Modrinth and show Modrinth notifications".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Modrinthify

Baixe arquivos de extensão Modrinthify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Modrinthify Modrinthify
ID gjjlcbppchpjacimpkjhoancdbdmpcoc
URL Oficial https://chromewebstore.google.com/detail/modrinthify/gjjlcbppchpjacimpkjhoancdbdmpcoc
Descrição Redirect Curseforge mod pages to Modrinth and show Modrinth notifications
Tamanho do Arquivo 41.27 KB
Contagem de Instalações 257
Versão Atual 1.7.1
Última Atualização 2023-08-13
Data de Publicação 2022-06-06
Classificação 4.86/5 Total de 7 Avaliações
Desenvolvedor jboi76coolmail
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/devBoi76/modrinthify
URL da Página de Ajuda https://github.com/devBoi76/modrinthify/issues
Idiomas Suportados 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"
    }
}