Upside down screen - bonk.io

Turns the entire UI upside down.

// ==UserScript==
// @name        Upside down screen - bonk.io
// @namespace   UnmatchedBracket
// @match       https://bonk.io/gameframe-release.html
// @grant       none
// @version     1.0
// @author      UnmatchedBracket
// @description Turns the entire UI upside down.
// @license     The Unlicense
// ==/UserScript==

style = document.createElement("style")
style.innerHTML = "#newbonkgamecontainer, #mainmenuelements{transform-origin: center;transform: rotate(180deg);}"
document.head.appendChild(style)