Upside down screen - bonk.io

Turns the entire UI upside down.

目前为 2022-09-14 提交的版本。查看 最新版本

// ==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==
// ==UserScript==
// @name        Upside down screen - bonk.io
// @namespace   left paren
// @match       https://bonk.io/gameframe-release.html
// @grant       none
// @version     1.0
// @author      left paren
// @description Turns the entire UI upside down.
// ==/UserScript==

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