VRChat Avatar Script

Allows saving of avatars on the VRChat website

Cos'è VRChat Avatar Script?

VRChat Avatar Script è un'estensione di Chrome sviluppata da makkumikan, e la sua funzione principale è "Allows saving of avatars on the VRChat website".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione VRChat Avatar Script

Scarica i file di estensione VRChat Avatar Script in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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)                    

Informazioni di Base sull'Estensione

Nome VRChat Avatar Script VRChat Avatar Script
ID dcgdfpppecdcabiipemphgppbccpopic
URL Ufficiale https://chromewebstore.google.com/detail/vrchat-avatar-script/dcgdfpppecdcabiipemphgppbccpopic
Descrizione Allows saving of avatars on the VRChat website
Dimensione del File 43.74 KB
Conteggio Installazioni 456
Versione Corrente 1.3
Ultimo Aggiornamento 2022-08-10
Data di Pubblicazione 2022-08-10
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore makkumikan
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}