Reviews for Total Suspender
Total Suspender by k5md
Response by k5md
Developer response
posted 5 years agoHello!
The reason, why it still suspends youtube, though you have added this string to whitelist patterns is because your example is not a regular expression. It is treated as a regular string. To add a regular expression, as stated in the description, you should prepend \regex\ to a correct regex (/pattern/flags). In your case it should be \regex\/https://www.youtube.com/*/g
And it will work.
The reason, why it still suspends youtube, though you have added this string to whitelist patterns is because your example is not a regular expression. It is treated as a regular string. To add a regular expression, as stated in the description, you should prepend \regex\ to a correct regex (/pattern/flags). In your case it should be \regex\/https://www.youtube.com/*/g
And it will work.