위티비 인트로 100초 건너뛰기 Tampermonkey 스크립트 (수정)

https://sngall.com/articles/101497
2025/05/12 20:17
조회수: 115

PC 브라우저 확장 프로그램에 Tampermonkey 설치하고 새 스크립트 추가 해서 아래 붙여넣기 하면 됨 

 

// ==UserScript==
// @name         WeTV Smart Intro Skipper (90s threshold, SPA support)
// @namespace    http://tampermonkey.net/
// @version      1.4
// @description  Skips to 100s if video starts before 90s. Works even with WeTV's episode switching (SPA aware). No skip if resuming from later time.
// @author       ChatGPT
// @match        https://wetv.vip/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    function applySkipLogic() {
        let hasSeeked = false;
        let maxWaitTime = 10000;
        let startTime = Date.now();

        const checkInterval = setInterval(() => {
            const video = document.querySelector('video');
            if (video && !hasSeeked) {
                if (video.readyState >= 1) {
                    const trySeek = () => {
                        if (!hasSeeked && video.duration > 100 && video.currentTime < 90) {
                            video.currentTime = 100;
                            hasSeeked = true;
                            console.log('⏩ Skipped to 100s');
                        }
                    };

                    video.addEventListener('play', trySeek, { once: true });

                    if (!video.paused) {
                        trySeek();
                    }

                    clearInterval(checkInterval);
                }
            }

            if (Date.now() - startTime > maxWaitTime) {
                clearInterval(checkInterval);
            }
        }, 500);
    }

    function hookIntoSPARouting() {
        const originalPushState = history.pushState;
        const originalReplaceState = history.replaceState;

        function onUrlChange() {
            console.log('🔁 Detected URL change to:', location.href);
            setTimeout(applySkipLogic, 1000); // Give some time for new video to load
        }

        history.pushState = function (...args) {
            originalPushState.apply(this, args);
            onUrlChange();
        };

        history.replaceState = function (...args) {
            originalReplaceState.apply(this, args);
            onUrlChange();
        };

        window.addEventListener('popstate', onUrlChange);
    }

    // Run on initial load
    applySkipLogic();
    hookIntoSPARouting();
})();

 

저절로 점프되는 기능이 자꾸 안 되길래 챗지피티로 만들었음ㅋㅋ 

내가 확인하기로는 위티비 드라마는 대부분 인트로가 100초던데 혹시 100초가 아닌 영상이 있으면 안 맞을 거임ㅋㅋ 그리고 가끔 그냥 로딩 타이밍이 안 맞아서 안 될지도 모름

근데 나는 지금 잘 쓰고 있다ㅋㅋ


code: [123ce]
목록 Gift

댓글


목록
No 제목 날짜 조회수 추천수
Notice 중어권 연예 갤러리 01-27 81898 225
101532 장링허 공작실 구찌 뷰티 Flora 직방 사진❤️‍🔥🌹 05-14 114 4
101531 류위닝 송조아 절요 커플 화보 위험한 관능미 [1] 05-14 130 6
101530 송위룡 야구골두 크랭크인 기념 화보 [1] 05-14 249 5
101529 샤오잔 장해전 포스터 비하인드 변신+캐릭터 예고 05-14 123 7
101528 장링허 구찌 크루즈 2026 초봄 출국 화보✈️ [1] 05-14 90 4
101527 장링허 MLB 항저우 in77점 행사 05-14 98 3
101526 장링허 MLB NY Yankees 여름 비눗방울 화보+비하인드🫧 05-14 97 3
101525 장링허 구찌 뷰티 Flora 직방+착장샷 봄날 꿈의 기차🚂🌸 [1] 05-14 111 2
101524 장링허 DREAME 대언인 예열 암호🎰 05-13 112 4
101523 절요랑 장해전 방영 떡밥이 둘다 뜨니까 05-13 138 2
101522 절요 조용히 방영하고 싶은가... [1] 05-13 139 2
101521 이보 燕之屋 홍보영상 [2] 05-13 143 7
101520 샤오잔 로레알 프로 Instant Smooth 비하인드 05-13 124 6
101519 장링허 랑콤 520 쾌락분 byebye홍민💝 05-13 103 5
101518 샤오잔 심상인 520 사랑의 흐름 05-13 115 5
101517 성의 조말론 English Pear & Freesia🌛 05-13 102 4
101516 절요 방영 예고+예약 300만 포스터 05-13 166 3
101515 절요 벌써 위티비 한글자막 들어왔다 05-13 159 3
101514 장해전 방영 공지 예고 한글자막+인물 포스터 05-13 109 3
101513 절요 오늘 방영!!! [1] 05-13 123 4