Last active
May 27, 2018 15:56
-
-
Save cuylerstuwe/f511c6d7d4ee7f691b3d76d43135b54a to your computer and use it in GitHub Desktop.
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 CSW Full Size Outer Work Frame | |
| // @namespace salembeats | |
| // @version 1.4 | |
| // @description . | |
| // @author Cuyler Stuwe (salembeats) | |
| // @include https://ops.cielo24.com/hitman/work/load_task/* | |
| // @grant none | |
| // ==/UserScript== | |
| async function main() { | |
| const workFrame = document.querySelector("iframe"); | |
| workFrame.style = "width: 100%; height: 100vh; margin-top: 25px;"; | |
| workFrame.setAttribute("allow", (workFrame.getAttribute("allow") || "") + "midi"); | |
| } | |
| main(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment