VRChat Avatar Script

Allows saving of avatars on the VRChat website

什么是VRChat Avatar Script?

VRChat Avatar Script是由makkumikan开发的Chrome扩展程序,该扩展的主要功能是“Allows saving of avatars on the VRChat website”。

扩展截图

screenshot

下载VRChat Avatar Script扩展crx文件

下载VRChat Avatar Script扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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)                    

扩展基本信息

名称 VRChat Avatar Script VRChat Avatar Script
ID dcgdfpppecdcabiipemphgppbccpopic
官方URL https://chromewebstore.google.com/detail/vrchat-avatar-script/dcgdfpppecdcabiipemphgppbccpopic
简介 Allows saving of avatars on the VRChat website
文件大小 43.74 KB
安装次数 456
当前版本 1.3
更新时间 2022-08-10
上架时间 2022-08-10
评分 5.00/5 共1次评分
开发者 makkumikan
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
            ]
        }
    ]
}