Greasy Fork is available in English.

remove cookie button

this thing is actually annoying

// ==UserScript==
// @name         remove cookie button
// @namespace    -
// @version      1.1
// @description  this thing is actually annoying
// @author       Stew
// @include      *://moomoo.io/*
// @include      *://sandbox.moomoo.io/*
// @include      *://dev.moomoo.io/*
// @grant        none
// ==/UserScript==

! function () {
    "use strict";
    setInterval(() => {
        document.getElementById("onetrust-consent-sdk") && "complete" == document.readyState && document.getElementById("onetrust-consent-sdk").remove()
    }, 100)
}();