I've been trying to figure how to make a pattern that loads a script.
https://twitter.com/fasc1nate/status/1582217359754162176 this is an example of a url that a would like to match.
specifically any twitter url that has /status/ anywhere in it.
i have tried with
"matches": ["*://*.twitter.com/*"]"
"matches": ["*://*.twitter.com/*/status"]"
"matches": ["*://*.twitter.com/*/status/*"]"
"matches": ["*://*.twitter.com/*/status/*/"]"
but i cant seem to get it.