Skip to content

Filters Options

amitbl edited this page Dec 5, 2020 · 4 revisions

Editor shortcuts

Works only while in focus in one of the text-areas

  • CTRL+F to search
  • F11 to toggle fullscreen mode

Filters syntax

  • Each line is a new rule
  • By default, each rule considered a case insensitive keyword
  • Unless the rule is RegExp matching to this template /pattern/flags
  • Lines starting with // are comments and ignored

Examples

   // match all videos that contains the word "vlog"
   vlog

   // match all videos containing two or more '!' in a row
   /!{2,}/i

When using RegExp DO NOT use the global ('g') flag or you'll have undesired results

Notes

  • ALL videos, comments, playlists of matching channels are blocked too
  • Video title also matches in playlist name
  • Channel name also matches users in comments/chat sections
  • Comment content also matches livestreams chat replies

Note for foreign languages (e.g. Japanese, Chinese)

The default behavior of a keyword is to be separated by some kind of boundary (like space for example) so when you block a keyword like you it wouldn't block youtube too. If you are trying to block a keyword which that is not separated by space from others, you have to make your filters RegExp expressions using two slashes.

For example:

To block a video with a title 【閃の軌跡シリーズ】全・オープニング集『閃Ⅰ改&閃Ⅱ改&閃Ⅲ&閃Ⅳ』【オールPS4版】【1080p60fps】 You should make your "Video title" filter /閃の軌跡/ instead of 閃の軌跡

Clone this wiki locally