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
| #pragma once | |
| enum class Key | |
| { | |
| LeftMouseBtn =0x01, //Left mouse button | |
| RightMouseBtn =0x02, //Right mouse button | |
| CtrlBrkPrcs =0x03, //Control-break processing | |
| MidMouseBtn =0x04, //Middle mouse button | |
| ThumbForward =0x05, //Thumb button back on mouse aka X1 |
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 noVNC Paste for Proxmox | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2a | |
| // @description Pastes text into a noVNC window (for use with Proxmox specifically) | |
| // @author Chester Enright | |
| // @match https://* | |
| // @include /^.*novnc.*/ | |
| // @require http://code.jquery.com/jquery-3.3.1.min.js | |
| // @grant none |
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
| #pragma once | |
| enum class Key | |
| { | |
| LeftMouseBtn =0x01, //Left mouse button | |
| RightMouseBtn =0x02, //Right mouse button | |
| CtrlBrkPrcs =0x03, //Control-break processing | |
| MidMouseBtn =0x04, //Middle mouse button | |
| ThumbForward =0x05, //Thumb button back on mouse aka X1 |