Removedor Div Modal

Userscript para remoção de elemento

이 스크립트는 직접 설치해서 쓰는 게 아닙니다. 다른 스크립트가 메타 명령 // @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);