VRChat Avatar Script

Allows saving of avatars on the VRChat website

¿Qué es VRChat Avatar Script?

VRChat Avatar Script es una extensión de Chrome desarrollada por makkumikan, y su función principal es "Allows saving of avatars on the VRChat website".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión VRChat Avatar Script

Descarga archivos de extensión VRChat Avatar Script 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

                        Injects a script into the VRChat website avatar page (followed by an avatar id) that allows saving to avatar groups (or just one for non-VRC+ users)                    

Información Básica de la Extensión

Nombre VRChat Avatar Script VRChat Avatar Script
ID dcgdfpppecdcabiipemphgppbccpopic
URL Oficial https://chromewebstore.google.com/detail/vrchat-avatar-script/dcgdfpppecdcabiipemphgppbccpopic
Descripción Allows saving of avatars on the VRChat website
Tamaño del Archivo 43.74 KB
Cantidad de Instalaciones 456
Versión Actual 1.3
Última Actualización 2022-08-10
Fecha de Publicación 2022-08-10
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador makkumikan
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VRChat Avatar Script",
    "description": "Allows saving of avatars on the VRChat website",
    "version": "1.3",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/vrchat.com\/*"
            ],
            "js": [
                "jquery-latest.min.js",
                "jquery.initialize.min.js",
                "jquery.sweet-dropdown.min.js"
            ],
            "css": [
                "jquery.sweet-dropdown.min.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/vrchat.com\/*"
            ],
            "js": [
                "all.js"
            ]
        },
        {
            "matches": [
                "https:\/\/vrchat.com\/home",
                "https:\/\/vrchat.com\/home\/locations"
            ],
            "js": [
                "home.js"
            ]
        },
        {
            "matches": [
                "https:\/\/vrchat.com\/home\/avatar*"
            ],
            "js": [
                "avatar.js"
            ]
        }
    ]
}