Deep Links
 You can use URL query parameters to automatically log in, navigate to a page, search for gameObject, and even run console commands.
 Examples
 // Automatically log in, navigate to the inspector page, and search for "player"
    > http://127.0.0.1:7759?pass=1234&page=inspector&s=player
    
 // Automatically log in, navigate to the inspector page, and select the gameObject with the name "player"
    > http://127.0.0.1:7759?pass=1234&page=inspector&go=player
    
 // Automatically log in, navigate to the console page, and run "ls player"
    > http://127.0.0.1:7759?pass=1234&page=console&run=ls%20player
 General Parameters
 | Parameter | Description | 
 | pass | Automatically connects with the given password. | 
 | page | Navigates to the given page. Options are "inspector", "logs", and "console" | 
 Inspector Parameters
 | Parameter | Description | 
 | s | Sets the gameObject search filter | 
 | go | Automatically selects the gameObject with the given name | 
 Console Parameters
 | Parameter | Description | 
 | run | Runs the given console command |