VRChat Avatar Script

Allows saving of avatars on the VRChat website

VRChat Avatar Scriptคืออะไร?

VRChat Avatar Script เป็นส่วนขยายของ Chrome ที่พัฒนาโดย makkumikan และคุณลักษณะหลักของมันคือ "Allows saving of avatars on the VRChat website"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VRChat Avatar Script

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}