// ==UserScript== // @name CHZZK - 애드블록 팝업 삭제 // @icon https://play-lh.googleusercontent.com/wvo3IB5dTJHyjpIHvkdzpgbFnG3LoVsqKdQ7W3IoRm-EVzISMz9tTaIYoRdZm1phL_8 // @namespace http://tampermonkey.net/ // @license MIT // @author _고기_ // @version 20250224 // @match *://*.chzzk.naver.com/* // @description 치지직 광고 차단 프로그램 감지 팝업 삭제 // @downloadURL none // ==/UserScript== (function() { 'use strict'; function blockPopup() { const popup = document.querySelector('.popup_container__Aqx-3'); if (popup) { popup.style.display = 'none'; } } const observer = new MutationObserver(() => { blockPopup(); }); observer.observe(document.body, { childList: true, subtree: true }); blockPopup(); })();