XHordes

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

¿Qué es XHordes?

XHordes es una extensión de Chrome desarrollada por LegusX, y su función principal es "The official XHordes extension. Allows users to load mods into the game Hordes.io".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión XHordes

Descarga archivos de extensión XHordes en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre XHordes XHordes
ID gbpigolhkeokbbpieimeiknacjhhejhl
URL Oficial https://chromewebstore.google.com/detail/xhordes/gbpigolhkeokbbpieimeiknacjhhejhl
Descripción The official XHordes extension. Allows users to load mods into the game Hordes.io
Tamaño del Archivo 365 KB
Cantidad de Instalaciones 43
Versión Actual 0.0.1
Última Actualización 2021-03-31
Fecha de Publicación 2021-03-30
Calificación 2.00/5 Total de 1 Calificaciones
Desarrollador LegusX
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/LegusX/xhordes
Idiomas Soportados 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\/*"
    ]
}