Skip to content

Instantly share code, notes, and snippets.

@zettca
Last active March 29, 2019 17:19
Show Gist options
  • Save zettca/06a388e7fe908bc6912dd75c648a166e to your computer and use it in GitHub Desktop.
Save zettca/06a388e7fe908bc6912dd75c648a166e to your computer and use it in GitHub Desktop.
this script widens Multicraft console
// ==UserScript==
// @name Widen Multicraft Console
// @namespace https://zettca.xyz/
// @version 0.1
// @description this script widens Multicraft console.
// @author zettca
// @match https://mc.shockbyte.com/index.php?r=server/log*
// ==/UserScript==
(function() {
'use strict';
let logConsole = document.getElementById("log-ajax");
logConsole.style.height = "600px";
logConsole.parentElement.className = "col-md-12 col-toppad";
document.getElementById("sidebar").remove();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment