VRChat Avatar Script

Allows saving of avatars on the VRChat website

Wat is VRChat Avatar Script?

VRChat Avatar Script is een Chrome-extensie ontwikkeld door makkumikan, en de belangrijkste functie is "Allows saving of avatars on the VRChat website".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie VRChat Avatar Script

Download VRChat Avatar Script-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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)                    

Basisinformatie over de Extensie

Naam VRChat Avatar Script VRChat Avatar Script
ID dcgdfpppecdcabiipemphgppbccpopic
Officiële URL https://chromewebstore.google.com/detail/vrchat-avatar-script/dcgdfpppecdcabiipemphgppbccpopic
Beschrijving Allows saving of avatars on the VRChat website
Bestandsgrootte 43.74 KB
Aantal Installaties 456
Huidige Versie 1.3
Laatst Bijgewerkt 2022-08-10
Publicatiedatum 2022-08-10
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar makkumikan
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}