├── .gitignore ├── LICENSE ├── README.md ├── plugin-window-helper.ahk └── readme ├── menu-multi.gif ├── menu.gif └── mouse.svg /.gitignore: -------------------------------------------------------------------------------- 1 | .history/ 2 | Class_Console/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandScullard/plugin-window-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandScullard/plugin-window-helper/HEAD/README.md -------------------------------------------------------------------------------- /plugin-window-helper.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandScullard/plugin-window-helper/HEAD/plugin-window-helper.ahk -------------------------------------------------------------------------------- /readme/menu-multi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandScullard/plugin-window-helper/HEAD/readme/menu-multi.gif -------------------------------------------------------------------------------- /readme/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandScullard/plugin-window-helper/HEAD/readme/menu.gif -------------------------------------------------------------------------------- /readme/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandScullard/plugin-window-helper/HEAD/readme/mouse.svg --------------------------------------------------------------------------------