Can Regular Expressions be used for the URL patterns in a Fluid app?

396 Views Asked by At

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: Userstyles/Userscripts Window in Fluid app

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.

  1. Can we use other characters such as "?" other than "*" to match the URLs?
  2. Can regular expression be used instead?
1

There are 1 best solutions below

2
On

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.