테스트 사이트 - 개발 중인 베타 버전입니다

삭제된 유튜브 뷰페이지에서 날리기

· 11개월 전 · 778 · 12

 

해피정님 팁 - https://sir.kr/g5_tip/23092 을 보고 착안해 보았습니다.

꼭 그누뿐만이 아니더라도 body 안에서 썸네일이 존재하지 않는 모든 아이프레임을 프론트에서 삭제합니다.

뭐 썸네일이 없는 동영상이 삭제된 동영상과 정확히 일대일 대응하는지 아닌지는 잘 모르겠습니다만 좌우지간요.

 

[code]

<script>
document.addEventListener("DOMContentLoaded", () => {
    ytvUrl = "https://www.youtube.com/embed";
    ytiUrl = "https://img.youtube.com/vi/";
    for (i of document.querySelectorAll("iframe[src*='youtube.com/']")) i.outerHTML = i.outerHTML + "<img title='yt-img' src='" + ytiUrl + i.src.replace(ytvUrl + "/", "").replace(ytvUrl + "?playlist=", "").slice(0, 11) + "/0.jpg'>";
    for (j of document.querySelectorAll("img[title='yt-img']")) {
        j.onload = function() {
            if (this.offsetWidth != 480) this.previousElementSibling.remove();
            this.remove();
        }
    }
});
</script>

[/code]

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

댓글 12개

감사합니다.

11개월 전

@써맨 감사합니다 

게시글 목록

번호 제목
22896
22895
22885
22875
22872
22862
22860
22855
22849
22846
22824
22812
22809
22801
22795
22786
22765
22756
22739
22735
22685
22639
22636
22607
22605
22603
22592
22583
22578
22577