Greasy Fork is available in English.

Upside down screen remake -bonk.io

Upside down screen in bonk.io but chat isn't upside down.

Install this script?
Author's suggested script

You may also like Code Injector - Bonk.io.

Install this script
// ==UserScript==
// @name        Upside down screen remake -bonk.io
// @namespace   LCDAngel99
// @match       https://bonk.io/gameframe-release.html
// @grant       none
// @version     1.0
// @author      LCDAngel99
// @description Upside down screen in bonk.io but chat isn't upside down.
// @license     The Unlicense
// ==/UserScript==

setInterval(() => {
    let iframe = document.getElementById("maingameframe");
    let w;
    if (iframe) w = iframe.contentWindow;
    else w = window;

    let mainCanvas = w.document.getElementsByTagName('canvas');
    if (mainCanvas) {
        mainCanvas[2].style.transformOsrigin = "center";
        mainCanvas[2].style.transform = "rotate(180deg)";
    }
}, 1000);