Once a video is clicked, it will be hidden from the subscription page
当前为
// ==UserScript== // @name YouTube Subscriptions Page: Hide Viewed Videos // @namespace hideViewedVideos_kk // @description Once a video is clicked, it will be hidden from the subscription page // @version 0.1 // @author Kai Krause <[email protected]> // @match http://www.youtube.com/feed/subscriptions* // @match https://www.youtube.com/feed/subscriptions* // @run-at document-end // ==/UserScript== function autoHideClicked (e) { e = e || window.event; var target = e.target || e.srcElement; var targets = []; targets.push(target); while (targets) { var targetType = target.tagName; //console.log(targetType); if (targetType == "YTD-GRID-VIDEO-RENDERER") { var hideMenuButton = target.getElementsByTagName('button')[0]; console.log(hideMenuButton); hideMenuButton.click(); //ytd-menu-service-item-renderer //selectable-content setTimeout(function() { var hideMenu = document.getElementsByTagName('ytd-popup-container')[0]; var hideButton = hideMenu.getElementsByTagName('yt-formatted-string'); for (var i = 0; i < hideButton.length; ++i) { if (hideButton[i].innerHTML == "Hide") { hideButton[i].click(); document.click(); break; } } }, 10) break; } else { targets.unshift(target); target = target.parentNode; } } } document.addEventListener('mouseup', autoHideClicked);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址