stylebot.me has been down for a while. Fonger created this gist to help those who need document on pattern settings. I have forked his gist in case he ever removes it.
By default, Stylebot uses simple text strings to match styles to websites. Examples:
docs.google.com: Matches any URL withdocs.google.comin it.docs.google.com, spreadsheets.google.com: Matches any URL withdocs.google.comorspreadsheets.google.comin it.
Stylebot supports wildcards **, * and ,
**matches any character sequence. Examples:docs**: Any URL beginning withdocs.
*matches any character sequence, until a/is found.docs*.google.com: This will matchhttp://docs.google.com,http://docs1.google.com,http://docs2.google.comand so on.*.ycombinator.com: This will matchhttp://news.ycombinator.comandhttp://apps.ycombinator.com
,separates a list of advanced patterns. Matches a URL if any sub-pattern matches it.
Stylebot treats a string as a regex if it start it with ^. Examples:
^http://www.reddit.com/$: This matches only the Reddit homepage.