Gota.io hide error banner

hides error banner on top of the screen

// ==UserScript==
// @name         Gota.io hide error banner
// @namespace    http://tampermonkey.net/
// @version      1
// @description  hides error banner on top of the screen
// @author       yl3
// @match        https://gota.io/web/*
// @license MIT
// @grant        none
// ==/UserScript==

var style = document.createElement('style');
style.innerHTML = ".error-banner { visibility: hidden; }";
document.body.appendChild(style);

QingJ © 2025

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