VRChat Avatar Script

Allows saving of avatars on the VRChat website

What is VRChat Avatar Script?

VRChat Avatar Script is a Chrome extension developed by makkumikan, and its main feature is "Allows saving of avatars on the VRChat website".

Extension Screenshots

screenshot

Download VRChat Avatar Script Extension CRX File

Download VRChat Avatar Script extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name VRChat Avatar Script VRChat Avatar Script
ID dcgdfpppecdcabiipemphgppbccpopic
Official URL https://chromewebstore.google.com/detail/vrchat-avatar-script/dcgdfpppecdcabiipemphgppbccpopic
Description Allows saving of avatars on the VRChat website
File Size 43.74 KB
Installation Count 456
Current Version 1.3
Last Updated 2022-08-10
Publish Date 2022-08-10
Rating 5.00/5 Total 1 Ratings
Developer makkumikan
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}