DO NOT HIDE THE PAGE!!
// ==UserScript==
// @name Display
// @namespace -
// @version 0.1
// @description DO NOT HIDE THE PAGE!!
// @author LianSheng
// @include *://battlecats-db.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
let load = setInterval(function(){
document.body.style.cssText = "display: initial;";
}, 10);
setTimeout(function(){
clearInterval(load);
}, 10000);
})();