Skip to content

Commit cebe5a6

Browse files
committed
fix(1.7.5): fix an issue causing false positives
1 parent a780afc commit cebe5a6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

removebots.user.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name Hide Bot Comments
33
// @namespace https://theusaf.org
4-
// @version 1.7.4
4+
// @version 1.7.5
55
// @description Removes comments made by bots on websites such as YouTube.
66
// @author theusaf
77
// @match https://www.youtube.com/**
@@ -22,25 +22,25 @@ const SITES = Object.freeze({
2222
// all caps and a link
2323
/^(\s*@.+)?\s*[A-Z\s\r\n!]*https:\/\/[^\s]+[A-Z\s\r\n!]*$/,
2424
// A link and a random message afterwards
25-
/^(\s*@.+)?\s*https:\/\/[^\s]+(\n|.|\s)*(It'll blow your mind\.|[dD]on'?t [mM]iss|Bots for u|Finally|💜|fax|only until|Bots are|:]|I found it :|Do not miss this|:\)|Ye[sp] ¤? (true|exactly)|(...?$))/i,
25+
/^(\s*@.+)?\s*https:\/\/[^\s]+(\n|.|\s)*(It'll blow your mind\.|[dD]on'?t [mM]iss|Bots for u|Finally|💜|fax|only until|Bots are|:]|\.\.?\.$|I found it :|Do not miss this|:\)|Ye[sp] ¤? (true|exactly)/i,
2626
// word + link
2727
/^(\s*@.+)?\s*(This|[Ww]ow!?)\s*https:\/\/[^\s]+/,
2828
// phrase + line + link
29-
/(is a brain burner.*|Finally it's here\.?|deceives.*subscribers:\.{1,}|you .*will never love.*|[\u0401\u0451\u0410-\u044f,.:]{15,}.*|EXPOSED:|IS FREAK!|IS GARBAGE!{1,}|shocking truth.*|his subscribers.*|will stop watching.*|yes\.?|THE GAME.*|After watching this video you will never love.*)(\n|\s)(\n|.)*https:\/\/[^\s]+/,
29+
/(is a brain burner.*|Finally it's here\.?|deceives.*subscribers:\.{1,}|you .*will never love.*|[\u0401\u0451\u0410-\u044f,.:]{15,}.*|HOW STRONG IS KETTLE\?!|EXPOSED:|IS FREAK!|IS GARBAGE!{1,}|shocking truth.*|his subscribers.*|will stop watching.*|yes\.?|THE GAME.*|After watching this video you will never love.*)(\n|\s)(\n|.)*https:\/\/[^\s]+/,
3030
// link + random "word"
3131
/^(\s*@.+)?\s*https:\/\/[^\s]+\s*[a-z]+\s*$/,
3232
// link with a star at the end??
3333
/https:\/\/youtu.be\/\w+\*/,
3434
// ...
35-
/SWEET-GIRL|PRIVATE S\*X|over 18|Anna is a beautiful girl/i,
35+
/SWEET-GIRL|HOTGIRL|PRIVATE S\*X|over 18|Anna is a beautiful girl/i,
3636
// suspicious websites
37-
/beautyzone\.\w+|\.cam|lust\.\w+|\.host|\.uno|asian\w*\.\w+|\w*teen\.\w+/i,
37+
/beautyzone\.\w+|\.cam|lust\.\w+|\.host|\.uno|\.fun|asian\w*\.\w+|\w*teen\.\w+/i,
3838
// too many "-"
3939
/-{5,}/,
4040
// single, somewhat strange word
4141
/^(Hii|Ye|Bruhh|Aawww?)$/,
4242
// common phrase
43-
/ ( ´ω ) 💕|I can read you mind brother|SPECIAL FOR YOU|l1ke my v1deo|small channel trying to grow| YouT\*ber|MY CONTENT|MY NAME|My video|pedophile😱|MY WORLD RECORD|(^Yes.{0,5}$)|said this to a fan|Read my name|[Mm]y mom.*subscribers|literally begging|MY VIDEOS?|my playlist|fucking cringe|[Dd][Oo][Nn]'?[Tt] read my name/,
43+
/ ( ´ω ) 💕|I can read you mind brother|SPECIAL FOR YOU|l1ke my v1deo|small channel trying to grow| YouT\*ber|MY CONTENT|MY NAME|at my profile|My video|pedophile😱|MY WORLD RECORD|(^Yes.{0,5}$)|said this to a fan|Read my name|[Mm]y mom.*subscribers|literally begging|MY VIDEOS?|my playlist|fucking cringe|[Dd][Oo][Nn]'?[Tt] read my name/,
4444
// replies to bots
4545
/@Don'?t read my|^(ro)?bot+$/i,
4646
// upside down chars

0 commit comments

Comments
 (0)