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

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

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

@써맨 감사합니다 

게시글 목록

번호 제목
24149
24140
24133
24125
24119
24109
24105
24101
24093
24089
24077
24074
24071
24070
24067
24056
24050
24046
24043
24040
24037
24036
24035
24034
24021
24017
24005
24002
23990
23980