你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/16771-filter-youtube-subscriptions-videos,源站連結 點此以跳轉。
Allows to hide matched videos from subscriptions page
Filter your youtube subscriptions page by hiding videos that matches regexp string in the videoMatchHide object;
Keys are channel names you want to filter, values are arrays of regular expression strings. For example if you want to hide all videos starting with "test video" from "test channel" you need object like this:
videoMatchHide = {
"test channel": ["^test video"]
};
If you want to match all videos from all channels just use key "*":
videoMatchHide = {
"test channel": ["^test video"],
"*": ["^test video 2"]
};