I have a lot open tabs of a website - and I want to limit it to only one URL.
The problem is that the URL has # in it and I can't seem to @match it.
The URL looks like: https://xxx.xxxxxx.xxx/#/xxxxxx
I tried:
// @match https://xxx.xxxxxx.xxx/#/xxxxxx - doesnt work
// @match https://xxx.xxxxxx.xxx/* - works - but works on all tabs
// @match https://xxx.xxxxxx.xxx/*/xxxxxx -doesnt work;/
// @match https://xxx.xxxxxx.xxx/\#/xxxxxx -doesnt work;/
Any combination of * and anything after it doesn't work. :(