VRChat Avatar Script
Allows saving of avatars on the VRChat website
Was ist VRChat Avatar Script?
VRChat Avatar Script ist eine Chrome-Erweiterung, die von makkumikan entwickelt wurde, und ihr Hauptmerkmal ist "Allows saving of avatars on the VRChat website".
Erweiterungsscreenshots
VRChat Avatar Script-Erweiterungs-CRX-Datei herunterladen
Laden Sie VRChat Avatar Script-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dcgdfpppecdcabiipemphgppbccpopic |
| Offizielle URL | https://chromewebstore.google.com/detail/vrchat-avatar-script/dcgdfpppecdcabiipemphgppbccpopic |
| Beschreibung | Allows saving of avatars on the VRChat website |
| Dateigröße | 43.74 KB |
| Installationsanzahl | 456 |
| Aktuelle Version | 1.3 |
| Letztes Update | 2022-08-10 |
| Veröffentlichungsdatum | 2022-08-10 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | makkumikan |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
}
]
} | |