Using a regular expression in a Greasemonkey @include?
I want to specify a bit better where my Greasemonkey script runs. // @include https://example.com/* Works fine, but it is too inaccurate, I want something like: // @include https://example.com/xx-xx/Asset/* xx could be any letter a-z, - is just dash, xx could be any letter a-z. My Idea was use regular expression for any 5 symbols, but I don't know how to properly use it. This is not working and lot more expression which I have tried to: // @include https://example.com/...../Asset/* Any idea how handle this? Update: This sort of works: // @include https://example.com/*/Asset/* See Include and