Skip to content

Instantly share code, notes, and snippets.

@cuylerstuwe
Last active May 27, 2018 15:56
Show Gist options
  • Select an option

  • Save cuylerstuwe/f511c6d7d4ee7f691b3d76d43135b54a to your computer and use it in GitHub Desktop.

Select an option

Save cuylerstuwe/f511c6d7d4ee7f691b3d76d43135b54a to your computer and use it in GitHub Desktop.
// ==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