XHordes

The official XHordes extension. Allows users to load mods into the game Hordes.io

XHordes란 무엇입니까?

XHordes은(는) LegusX에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The official XHordes extension. Allows users to load mods into the game Hordes.io"입니다.

확장 프로그램 스크린샷

screenshot

XHordes 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The official XHordes Modding Extension! Allows anyone to easily install mods for the game Hordes.io

Features:
 - Install mods from .xhordes.zip files
 - Change mod loading order
 - Enable/disable individual mods

How to use:
Simply visit the download link for any XHordes compatible mod and then click "Install" on the page that follows.
(If prompted for save location, please select "save file" and not "open"!

After installing a mod, it'll be automatically loaded into Hordes.io when you open it next!

NOTE:
Hordes.io will probably take longer to load than usual (typically another 20-30 seconds). If it takes longer than a minute, please reload the page and see if it works. If it still doesn't work, please report it in our Discord server ( https://discord.gg/y9YS633r5p )

Want to create your own mod?
Follow this link for instructions on how to do so!
https://github.com/LegusX/xhordes/wiki/Creating-a-Mod

Want to contribute, or just view the source code?
Check out the Github repository. All the code is open source! 
https://github.com/LegusX/xhordes                    

확장 프로그램 기본 정보

이름 XHordes XHordes
ID gbpigolhkeokbbpieimeiknacjhhejhl
공식 URL https://chromewebstore.google.com/detail/xhordes/gbpigolhkeokbbpieimeiknacjhhejhl
설명 The official XHordes extension. Allows users to load mods into the game Hordes.io
파일 크기 365 KB
설치 횟수 43
현재 버전 0.0.1
최근 업데이트 2021-03-31
출시 날짜 2021-03-30
평점 2.00/5 총 1 개의 평점
개발자 LegusX
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/LegusX/xhordes
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "XHordes",
    "version": "0.0.1",
    "homepage_url": "https:\/\/xhordes.legusx.dev",
    "description": "The official XHordes extension. Allows users to load mods into the game Hordes.io",
    "icons": {
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/hordes.io\/play"
            ],
            "js": [
                "src\/browser-polyfill.js",
                "src\/loader.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/hordes.io\/play",
        "unlimitedStorage",
        "storage",
        "downloads"
    ],
    "browser_action": {
        "default_popup": "popup\/index.html",
        "default_title": "XHordes"
    },
    "background": {
        "scripts": [
            "src\/browser-polyfill.js",
            "src\/jszip.min.js",
            "src\/idb-file-storage.js",
            "src\/background.js"
        ]
    },
    "web_accessible_resources": [
        "bootstrap\/*",
        "install\/*",
        "src\/*"
    ]
}