gediminasel / videospeed-firefox

HTML5 video speed controller (for Firefox). WebExtensions port of Video Speed Controller Chrome extension.
MIT License
23 stars 2 forks source link

Correct Regex? I want to blacklist this entire website, but nothing I try works. #11

Closed gaveitatry2 closed 1 year ago

gaveitatry2 commented 1 year ago

UPDATE:

The correct Regex format was:

app.chatwebsite.com


I have a website like this https://app.chatwebsite.com/room/lounge/randompersonsname

I want to disable Video Speed Controller for that entire website so that the control box does not show up on the videos.

I wanted to do something simple like this:

*chatwebsite.com*

https://app.chatwebsite.com*

but that didn't work.

So I tried figuring out Regex and tried:

https://app.chatwebsite.com/.

https://app.chatwebsite.com/.*

/?(?<=chatwebsite.*)$

and some others, but they also did not work.

What is the correct format?

gaveitatry2 commented 1 year ago

Hello?

gaveitatry2 commented 1 year ago

@gediminasel - Can I please get some help? I just want to completely blacklist this one entire website so that the controller never shows up on it. But I don't know Regex and my guess attempts all failed. This would probably take you five seconds to answer. But I'm waiting months with no reply. Please help.

gediminasel commented 1 year ago

Hi, have you tried simply app.chatwebsite.com or chatwebsite.com?

gaveitatry2 commented 1 year ago

Hi, have you tried simply app.chatwebsite.com or chatwebsite.com?

Awesome, that works. Thank you!