bigger chat

chat = big

  1. // ==UserScript==
  2. // @name bigger chat
  3. // @description chat = big
  4. // @namespace greasyfork.org/users/1275509
  5. // @author rosefog
  6. // @version yes
  7. // @license MIT
  8. // @match https://bonk.io/gameframe-release.html
  9. // @match https://bonkisback.io/gameframe-release.html
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13.  
  14. var chatbox = document.getElementById ("ingamechatbox");
  15. chatbox.style.width = '480';
  16. chatbox.style.height = '240';
  17. var chatcontent = document.getElementById ("ingamechatcontent");
  18. chatcontent.style.fontSize = '16';
  19. })();