MoveChat (TL) · Bonk.io

This script will move the chat box to the top left.

目前為 2023-01-11 提交的版本,檢視 最新版本

// ==UserScript==
// @name         MoveChat (TL) · Bonk.io
// @namespace    https://greasyfork.org/en/users/962705
// @version      1.0.0b
// @license      GPL-3.0
// @description  This script will move the chat box to the top left.
// @author       rrreddd
// @match        https://bonk.io/*
// @run-at       document-end
// @grant        none
// ==/UserScript==

(function() {

    var chatBox = document.getElementById("ingamechatbox");
    var chatCont = document.getElementById("ingamechatcontent");

    chatBox.style.position = "absolute";
    chatBox.style.top = "0px";
    chatBox.style.left = "0px";
    chatBox.style.margin = "0px";
    chatCont.style.top = "5px";
    chatCont.style.margin = "0px";
    chatCont.style.height = "245px";

})();