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
Eメール [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"
    }
}