您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
hide videos with given title keywords
当前为
// ==UserScript== // @name YouTube - Filter Subscriptions Page // @namespace https://zachhardesty.com // @author Zach Hardesty <[email protected]> (https://github.com/zachhardesty7) // @description hide videos with given title keywords // @copyright 2019-2021, Zach Hardesty (https://zachhardesty.com/) // @license GPL-3.0-only; http://www.gnu.org/licenses/gpl-3.0.txt // @version 1.0.0 // @homepageURL https://github.com/zachhardesty7/tamper-monkey-scripts-collection/raw/master/youtube-filter-subscriptions-page.user.js // @homepageURL https://openuserjs.org/scripts/zachhardesty7/YouTube_-_Filter_Subscriptions_Page // @supportURL https://openuserjs.org/scripts/zachhardesty7/YouTube_-_Filter_Subscriptions_Page/issues // @match https://www.youtube.com/feed/subscriptions* // @match https://www.youtube.com/ // @match https://www.youtube.com/?* // @require https://gf.qytechs.cn/scripts/419640-onelementready/code/onElementReady.js?version=887637 // ==/UserScript== /* global onElementReady */ const keywords = [ "pixelmon", "dark souls", "darkest dungeon", "hot rod garage", "dirt every day", "roadkill", "standard chess", "no man's sky", "unboxing", "week to wicked", "engine masters", "hearthstone", ] // runs on youtube.com/feed/subscriptions onElementReady( "#dismissible.style-scope.ytd-grid-video-renderer", { findOnce: false }, (el) => { // remove video for (const keyword of keywords) { if ( el .querySelector("#details #meta") .firstElementChild.textContent.toLowerCase() .includes(keyword) ) { el.parentElement.remove() } } } ) // runs on youtube.com onElementReady( "#dismissible.style-scope.ytd-rich-grid-media", { findOnce: false }, (el) => { // remove video for (const keyword of keywords) { if ( el .querySelector("#details #meta") .firstElementChild.textContent.toLowerCase() .includes(keyword) ) { el.parentElement.parentElement.parentElement.remove() } } } )
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址