VRChat Avatar Script
Allows saving of avatars on the VRChat website
Qu'est-ce que VRChat Avatar Script ?
VRChat Avatar Script est une extension Chrome développée par makkumikan, et sa fonction principale est "Allows saving of avatars on the VRChat website".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension VRChat Avatar Script
Téléchargez les fichiers d'extension VRChat Avatar Script au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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)
Informations de Base sur l'Extension
Nom | VRChat Avatar Script |
ID | dcgdfpppecdcabiipemphgppbccpopic |
URL Officiel | https://chromewebstore.google.com/detail/vrchat-avatar-script/dcgdfpppecdcabiipemphgppbccpopic |
Description | Allows saving of avatars on the VRChat website |
Taille du Fichier | 43.74 KB |
Nombre d'Installations | 456 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2022-08-10 |
Date de Publication | 2022-08-10 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | makkumikan |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |