Come impedire a YouTube di mostrare video già guardati?


12

Esiste un modo per impedire a YouTube di mostrare video già guardati nell'elenco dei video suggeriti?


1
Una rapida occhiata all'HTML mi fa pensare che non dovrebbe essere troppo difficile da fare. Fondamentalmente vuoi impostare display: nonequalsiasi <ytd-compact-video-renderer>elemento che contenga un elemento figlio #progress. Non sarai in grado di farlo in CSS, ma uno script Tampermonkey dovrebbe essere abbastanza semplice. Ci proverò più tardi e scriverò una risposta ...
Aaron F

Risposte:


12

Attualmente, non esiste alcun trattamento / soluzione per farlo. Oltre a bloccarli manualmente uno per uno, non ci sono soluzioni scalabili.

0

Ma ci sono estensioni che possono farlo come:


// ==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();

3
È un peccato. Ricevo sempre la stessa ~ dozzina di video musicali ma bloccarli completamente è eccessivo.
JollyJoker

1
oh bello, ti sei aggiornato con uno script utente! :-)
Aaron F,

Alcuni non funzionano, ma questo è quello che stavo cercando. Tks
DGaleano,

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.