this thing is actually annoying
当前为
// ==UserScript==
// @name remove cookie button
// @namespace -
// @version 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(() => {
"complete" == document.readyState && document.getElementById("onetrust-consent-sdk").remove()
}, 100)
}();