The following match rules work with the Greasemonkey web extension but not with Greasemonkey for Falkon. // @match *://SOMESITE.(co.uk|com|de|fr|it)/* // @match *://*.SOMESITE.(co.uk|com|de|fr|it)/* Of course, the include metablock does it successfully and more simply with: // @include *://SOMESITE.*/* // @include *://*.SOMESITE.*/*
Hello, The @match meta-thing is handled by QtWebEngine script module. The QWebEngineScript follows the GreaseMonkey specification which follows Google Chrome specification. There is not a mention of regex support in the @match attribute. Based on the links for: Qt documentation https://doc.qt.io/qt-6/qwebenginescript.html#details Greasemonkey wiki (linked from above): https://wiki.greasespot.net/Metadata_Block#@match Google Chrome documentation for developers (linked from above): https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns
I much appreciate your explanation and elaborated respond!