This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Open with VRCX | |
| // @namespace Violentmonkey Scripts | |
| // @description Adds buttons to vrchat user/world pages that open the page in VRCX | |
| // @version 1.0.0 | |
| // @author Teacup | |
| // @match https://vrchat.com/home/* | |
| // @match https://vrclist.com/* | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min.js | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/jquery-ui.min.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using UdonSharp; | |
| using UnityEngine; | |
| using UnityEngine.Diagnostics; | |
| using UnityEngine.InputSystem; | |
| using VRC.SDK3.Data; | |
| using VRC.SDKBase; | |
| using VRC.Udon.Common; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using UdonSharp; | |
| using UnityEngine; | |
| using VRC.SDK3.Data; | |
| using VRC.SDK3.StringLoading; | |
| using VRC.SDKBase; | |
| using VRC.Udon.Common.Interfaces; | |
| /// <summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Net; | |
| using System.Security.Policy; | |
| using UdonSharp; | |
| using UnityEngine; | |
| using VRC.SDK3.Data; | |
| using VRC.SDK3.StringLoading; | |
| using VRC.SDKBase; |