idk
// ==UserScript==
// @name Remove Habblet Client Ads
// @namespace http://tampermonkey.net/
// @version 0.3
// @description idk
// @author xor
// @match *://*.habblet.city/hotel*
// @icon https://www.habblet.city/assets/images/favicon.ico
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector('body > div:not([id])')?.remove();
document.getElementById("area_player")?.remove();
})();