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.1
  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-start
  10. // @grant GM_addStyle
  11. // ==/UserScript==
  12.  
  13. GM_addStyle (`
  14. #ingamechatbox {
  15. position: absolute;
  16. top: 0px;
  17. left: 0px;
  18. height: 250px;
  19. margin: 0px;
  20. }
  21.  
  22. #ingamechatcontent {
  23. top: 5px;
  24. left: 5px;
  25. height: 220px !important;
  26. margin: 0px;
  27. }
  28. `);