VRChat Avatar Script
Allows saving of avatars on the VRChat website
Hvad er VRChat Avatar Script?
VRChat Avatar Script er en Chrome-udvidelse udviklet af makkumikan, og dens hovedfunktion er "Allows saving of avatars on the VRChat website".
Udvidelsesskærmbilleder
Download VRChat Avatar Script-udvidelses-CRX-fil
Download VRChat Avatar Script-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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)
Grundlæggende oplysninger om udvidelsen
Navn | VRChat Avatar Script |
ID | dcgdfpppecdcabiipemphgppbccpopic |
Officiel URL | https://chromewebstore.google.com/detail/vrchat-avatar-script/dcgdfpppecdcabiipemphgppbccpopic |
Beskrivelse | Allows saving of avatars on the VRChat website |
Filstørrelse | 43.74 KB |
Antal Installationer | 456 |
Nuværende Version | 1.3 |
Senest Opdateret | 2022-08-10 |
Udgivelsesdato | 2022-08-10 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | makkumikan |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |