Make in-game chat messages selectable

Simple bonk.io mod that allows you to select chatbox message content in-game.

  1. // ==UserScript==
  2. // @name Make in-game chat messages selectable
  3. // @version 0.1
  4. // @author SneezingCactus
  5. // @namespace https://github.com/SneezingCactus
  6. // @description Simple bonk.io mod that allows you to select chatbox message content in-game.
  7. // @match https://*.bonk.io/gameframe-release.html
  8. // @license MIT
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12.  
  13. const style = document.createElement('style');
  14. style.innerHTML = '#ingamechatcontent { pointer-events: all; } .ingamechatname, .ingamechatmessage { user-select: text; }';
  15. document.head.appendChild(style);
  16. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址