답변:
현재로서는 치료 / 해결 방법이 없습니다. 하나씩 수동으로 차단하는 것 외에도 확장 가능한 솔루션이 없습니다.
그러나 다음과 같은 확장 기능이 있습니다.
// ==UserScript==
// @version 1.1.1
// @name Hide watched videos on YouTube
// @namespace https://gist.github.com/xPaw/6324624
// @match https://www.youtube.com/*
// @updateURL https://gist.github.com/xPaw/6324624/raw/YoutubeHideWatched.user.js
// @downloadURL https://gist.github.com/xPaw/6324624/raw/YoutubeHideWatched.user.js
// @grant none
// ==/UserScript==
const app = document.querySelector( 'ytd-app' );
function HideVideos( a )
{
app.querySelectorAll( 'ytd-thumbnail-overlay-resume-playback-renderer:not([data-hidden="true"])' ).forEach( element =>
{
element.dataset.hidden = true;
while( ( element = element.parentNode ).tagName.toLowerCase() !== 'ytd-item-section-renderer' )
{
// Find the container element for this video
}
element.hidden = true;
} );
}
function ProcessPage()
{
if( !window.location.pathname.startsWith( '/feed/subscriptions' ) )
{
return;
}
const list = app.querySelector( 'ytd-section-list-renderer' );
if( list.dataset.hooked )
{
return;
}
list.dataset.hooked = true;
list.addEventListener( 'yt-next-continuation-data-updated', HideVideos );
// TODO: Find an event to fix this
new MutationObserver( HideVideos ).observe( list, { childList: true, subtree: true } );
}
app.addEventListener( 'yt-navigate-finish', ProcessPage );
ProcessPage();
AFAIK의 경우 YouTube 자체에서이 작업을 수행 할 수있는 방법은 없지만 구독 탭에서 시청 한 동영상을 숨길 수 있는 Chrome 확장 프로그램 ( YouTube 구독 개선 )을 사용합니다.
display: none
하나에서<ytd-compact-video-renderer>
자식 요소를 포함 요소#progress
. CSS에서는 그렇게 할 수 없지만 Tampermonkey 스크립트는 충분히 단순해야합니다. 나중에 가서 답을 쓸 것입니다.