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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}