MoveChat (TL) · Bonk.io

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

当前为 2023-01-11 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name MoveChat (TL) · Bonk.io
  3. // @namespace https://greasyfork.org/en/users/962705
  4. // @version 1.0.0a
  5. // @license GPL-3.0
  6. // @description This script will move the chat box to the top left.
  7. // @author rrreddd
  8. // @match https://bonk.io/*
  9. // @run-at document-end
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14.  
  15. var chatBox = document.getElementById("ingamechatbox");
  16. var chatCont = document.getElementById("ingamechatcontent");
  17.  
  18. chatBox.style.position = "absolute";
  19. chatBox.style.top = "0px";
  20. chatBox.style.left = "0px";
  21. chatBox.style.margin = "0px";
  22. chatCont.style.top = "5px";
  23. chatCont.style.margin = "0px";
  24.  
  25. })();