Greasy Fork is available in English.

Filter YouTube subscriptions videos

Allows to hide matched videos from subscriptions page

Δημιουργός
larionov
Ημερήσιες εγκαταστάσεις
0
Σύνολο εγκαταστάσεων
251
Βαθμολογίες
0 1 0
Έκδοση
0.2
Δημιουργήθηκε την
02/02/2016
Ενημερώθηκε την
02/02/2016
Άδεια
GPLv3 - http://www.gnu.org/licenses/gpl-3.0.en.html
Εφαρμόζεται σε

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"]
};