Gota.io hide error banner

hides error banner on top of the screen

  1. // ==UserScript==
  2. // @name Gota.io hide error banner
  3. // @namespace http://tampermonkey.net/
  4. // @version 1
  5. // @description hides error banner on top of the screen
  6. // @author yl3
  7. // @match https://gota.io/web/*
  8. // @license MIT
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. var style = document.createElement('style');
  13. style.innerHTML = ".error-banner { visibility: hidden; }";
  14. document.body.appendChild(style);

QingJ © 2025

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