Is there a way to know which url pattern matched a given url in one of the webRequest listeners.
Pattern match details: https://developer.chrome.com/docs/extensions/mv3/match_patterns/
These are not regex expressions, so cant use js regex libraries
e.g. chrome.webRequest.onHeadersReceived(callback_, urls: [<pattern1>, <pattern2>, <pattern3>]);
When the callback in invoked, is there a way to know which pattern matched the url
Thanks