YouTube - Remove Watched Videos

Watched videos will be removed from subfeed

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         YouTube - Remove Watched Videos
// @version      1.0
// @description  Watched videos will be removed from subfeed
// @author       Bobocato
// @match        https://www.youtube.com/*
// @grant        none
// @namespace https://greasyfork.org/users/167089
// ==/UserScript==

function deleteParents(){
    console.log("Start");
    let watchedBadges = document.getElementsByClassName("ytd-thumbnail-overlay-playback-status-renderer");
    let parent = false;
    let currElement;
    //Get parent and remove them
    for (let i = 0; i < watchedBadges.length; i++){
        currElement = watchedBadges[i];
        while (!parent){
            if(currElement.nodeName == "YTD-GRID-VIDEO-RENDERER"){
                parent = true;
                currElement.remove();
                console.log("Removed");
            } else {
                currElement = currElement.parentElement;
            }
        }
        parent = false;
    }
    if(document.getElementsByClassName("ytd-thumbnail-overlay-playback-status-renderer").length > 0){
        deleteParents();
    }
}

(function() {
    'use strict';
    setInterval(function(){
        console.log("Remove Called");
        if(document.getElementsByClassName("ytd-thumbnail-overlay-playback-status-renderer").length > 0){
            deleteParents();
        }
    }, 1000);

})();