No Privacy popup bloxd

Removes the privacy policy popup on bloxd.

// ==UserScript==
// @name         No Privacy popup bloxd
// @version      1.2
// @description  Removes the privacy policy popup on bloxd.
// @author       Quazut
// @match        *://bloxd.io/*
// @match        *://staging.bloxd.io/*
// @match        *://bloxdhop.io/*
// @match        *://bloxdk12.com/*
// @match        *://doodlecube.io/*
// @match        *://eviltower.io/*
// @match        *://1219647973806571553.discordsays.com/*
// @license      GPL-3.0-only
// @namespace http://tampermonkey.net/
// ==/UserScript==
(new MutationObserver((mutationList, observer) => {
  if(document.querySelector(".PromptPopupBodyPrimaryButton")) { document.querySelector(".PromptPopupBodyPrimaryButton").click();}
})).observe(
  document.documentElement,
  {
    childList: true,
    attributes: true,
    subtree: true
  }
);

QingJ © 2025

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