I was looking to block a URL with multiple wildcards to handle various test environments like such: https://test-*.application.com/*/service
Chrome DevTools handles this fine. But when I do this in this extension, I get an invalid URL and the extension blocks itself. The problem looks to be with the Regex in one of the final capturing groups.
I was looking to block a URL with multiple wildcards to handle various test environments like such:
https://test-*.application.com/*/serviceChrome DevTools handles this fine. But when I do this in this extension, I get an invalid URL and the extension blocks itself. The problem looks to be with the Regex in one of the final capturing groups.