메이플스토리 인벤 자유 게시판

전체보기

모바일 상단 메뉴

본문 페이지

[수다] 제논 버프하고 ''모두의 본캐'' 드가자

아이콘 호구왓는가
조회: 237
2026-08-28 14:48:17
// ==UserScript==
// @name         CHZZK 광고차단 감지 정지 자동 새로고침
// @namespace    chzzk-adblock-stall-reload
// @version      1.0
// @description  치지직에서 중앙 큰 재생버튼(aria-label="재생")이 1초 이상 떠있으면(=재생이 멈춘 것으로 판단) 페이지를 자동 새로고침합니다.
// @author       you
// @match        https://chzzk.naver.com/*
// @run-at       document-idle
// @grant        none
// ==/UserScript==

(function () {
  'use strict';

  const TAG = '[CHZZK 정지 감지 새로고침]';
  const CHECK_INTERVAL_MS = 300;
  const STALL_LIMIT_MS = 1000;

  let sinceMs = null;
  let reloading = false;

  function findBigPlayButton() {
    return document.querySelector(
      'button.pzp-brand-playback-button[aria-label="재생"], button[aria-label="재생"].pzp-brand-playback-button'
    );
  }

  function isVisible(el) {
    if (!el) return false;
    if (el.offsetParent === null && getComputedStyle(el).position !== 'fixed') return false;
    return true;
  }

  function check() {
    if (reloading) return;

    const btn = findBigPlayButton();
    const visible = isVisible(btn);

    if (visible) {
      if (sinceMs === null) {
        sinceMs = Date.now();
        console.log(TAG, '재생 버튼 감지, 관찰 시작');
      } else if (Date.now() - sinceMs >= STALL_LIMIT_MS) {
        reloading = true;
        console.log(TAG, '1초 이상 지속 확인 → 새로고침');
        location.reload();
      }
    } else {
      sinceMs = null;
    }
  }

  setInterval(check, CHECK_INTERVAL_MS);
})();

모바일 게시판 하단버튼

댓글

새로고침
새로고침

모바일 게시판 하단버튼

지금 뜨는 인벤

더보기+

모바일 게시판 리스트

모바일 게시판 하단버튼

글쓰기

모바일 게시판 페이징

최근 HOT한 콘텐츠

  • 메이플
  • 게임
  • IT
  • 유머
  • 연예
AD