VRChat Avatar Script
Allows saving of avatars on the VRChat website
O que é VRChat Avatar Script?
VRChat Avatar Script é uma extensão do Chrome desenvolvida por makkumikan, e sua principal característica é "Allows saving of avatars on the VRChat website".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão VRChat Avatar Script
Baixe arquivos de extensão VRChat Avatar Script no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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)
Informações Básicas da Extensão
Nome | VRChat Avatar Script |
ID | dcgdfpppecdcabiipemphgppbccpopic |
URL Oficial | https://chromewebstore.google.com/detail/vrchat-avatar-script/dcgdfpppecdcabiipemphgppbccpopic |
Descrição | Allows saving of avatars on the VRChat website |
Tamanho do Arquivo | 43.74 KB |
Contagem de Instalações | 456 |
Versão Atual | 1.3 |
Última Atualização | 2022-08-10 |
Data de Publicação | 2022-08-10 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | makkumikan |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |