How could I match any part of the URL? E.g. `if (url.href.includes("abc")) return "ABC";` doesn't catch `https://somehost.com/xyabcdef`.
How could I match any part of the URL?
E.g.
if (url.href.includes("abc")) return "ABC";doesn't catchhttps://somehost.com/xyabcdef.