Removedor Div Modal

Userscript para remoção de elemento

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greasyfork.org/scripts/492176/1359451/Removedor%20Div%20Modal.js

//@version 1.1

function checkAndRemoveModal() {
  var modal = document.querySelector(".modal-backdrop.fade");
  if (modal) {
    modal.remove();
  }
}

// Call the function initially to check for existing modal
checkAndRemoveModal();

// Set an interval to check and remove the modal every 100 milliseconds (adjustable)
setInterval(checkAndRemoveModal, 100);