Wildcard URLs (LockCrypt)
From Lime 49 Wiki
Account URLs can be specified using wildcards to make them apply to certain websites. LockCrypt checks the protocol, host and file when determining whether an account matches a URL. The wildcard character * can be used for any one of these sections to match any URL.
Syntax
protocol://host/file
Any parts which are left blank are implicit wildcards.
Example Matches
| URL Stored in Account | Matching URLs | Non-Matching URLs |
|---|---|---|
| http://www.google.com/ | http://www.google.com/ | http://google.com/
http://www.google.co.za/ |
| http://*google.com/ | http://www.google.com/
http://groups.google.com/ http://groups.google.com/group1 | http://google.jp/ |
| *://mycompany/ | gopher://mycompany/login/
http://mycompany/search.aspx | http://google.com/
ftp://microsoft.com/ |
| *://*.com | http://google.com/
ftp://ftp.yahoo.com | http://google.ru/ |
| http://*.intra.google*/*login.php | http://google.com/login.php
http://google.fr/admin/login.php | http://intra.contractor/anything.php |
| *login.php | http://google.com/login.php
http://yahoo.com/login.php | http://google.com/search.php |
