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
官方網址 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"
    }
}