URL patterns are very handy in Fluid app (a Site-specific Browser for OS X) to support scripts/styles for certain specified URLs, for example:
As stated on the official website:
In the "Pattern" table below, you should add a pattern for any URL which you want to your Fluid App to visit. Star ("*") is a special character in this table. Star means "match anything here", and is a powerful way to easily include or exclude very large groups of URL patterns.
- Can we use other characters such as "?" other than "*" to match the URLs?
- Can regular expression be used instead?
Developer of Fluid here.
Update: Yes! Now you can use either simple Wildcard Patterns or full Regular Expression Patterns.
In Wildcard Patterns, star ("*") is a special Wildcard character that means "match anything here", and is a powerful way to easily include or exclude very large groups of URL patterns.
Alternatively, you can use full Regular Expression Patterns instead of Wildcard Patterns by wrapping your URL pattern in forward slashes / like: /http://google.com/.+/.
Full details on the Whitelist feature in Fluid are here.