VRChat Avatar Script
Allows saving of avatars on the VRChat website
Co to jest VRChat Avatar Script?
VRChat Avatar Script to rozszerzenie Chrome opracowane przez makkumikan, a jego główną funkcją jest „Allows saving of avatars on the VRChat website”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia VRChat Avatar Script
Pobierz pliki rozszerzeń VRChat Avatar Script w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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)
Podstawowe informacje o rozszerzeniu
Nazwa | VRChat Avatar Script |
ID | dcgdfpppecdcabiipemphgppbccpopic |
Oficjalny URL | https://chromewebstore.google.com/detail/vrchat-avatar-script/dcgdfpppecdcabiipemphgppbccpopic |
Opis | Allows saving of avatars on the VRChat website |
Rozmiar pliku | 43.74 KB |
Liczba instalacji | 456 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2022-08-10 |
Data Publikacji | 2022-08-10 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | makkumikan |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |