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

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

· 11개월 전 · 783 · 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개월 전

@써맨 감사합니다 

게시글 목록

번호 제목
23798
23797
23792
23791
23785
23781
23770
23766
23764
23761
23747
23732
23724
23718
23706
23700
23697
23686
23682
23681
23680
23678
23665
23644
23643
23639
23637
23630
23626
23616