VRChat Avatar Script

VRChat Avatar Script

Allows saving of avatars on the VRChat website

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}