Modrinthify

Redirect Curseforge mod pages to Modrinth and show Modrinth notifications

什么是Modrinthify?

Modrinthify是由jboi76coolmail开发的Chrome扩展程序,该扩展的主要功能是“Redirect Curseforge mod pages to Modrinth and show Modrinth notifications”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Modrinthify扩展crx文件

下载Modrinthify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Modrinthify Modrinthify
ID gjjlcbppchpjacimpkjhoancdbdmpcoc
官方URL https://chromewebstore.google.com/detail/modrinthify/gjjlcbppchpjacimpkjhoancdbdmpcoc
简介 Redirect Curseforge mod pages to Modrinth and show Modrinth notifications
文件大小 41.27 KB
安装次数 257
当前版本 1.7.1
更新时间 2023-08-13
上架时间 2022-06-06
评分 4.86/5 共7次评分
开发者 jboi76coolmail
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/devBoi76/modrinthify
帮助页面URL https://github.com/devBoi76/modrinthify/issues
支持的语言 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"
    }
}