VRChat Avatar Script
Allows saving of avatars on the VRChat website
VRChat Avatar Script क्या है?
VRChat Avatar Script makkumikan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows saving of avatars on the VRChat website"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में VRChat Avatar Script एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } ] } |