-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.finicky.js
50 lines (48 loc) · 1.18 KB
/
.finicky.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Use https://finicky-kickstart.now.sh to generate basic configuration
// Learn more about configuration options: https://github.com/johnste/finicky/wiki/Configuration
module.exports = {
defaultBrowser: "Safari",
options: {
logRequests: true,
},
handlers: [
{
// Open google.com and *.google.com urls in Google Chrome
match: [
'app.asana.com/*',
'app.hibob.com/*',
'docs.google.com/*',
'drive.google.com/*',
'graylog.oddspedia:9000/*',
'confidential-mail.google.com/*',
// finicky.matchDomains(/.*\.catenate.bg/), // use helper function to match on domain only
],
browser: "Google Chrome"
},
{
match: [
'*catenate.bg/*',
'*catenate.com/*',
'app.getguru.com/*',
'catenate1.sharepoint.com/*',
'catenate1-my.*'
],
browser: "Microsoft Edge"
},
{
match: [
"fos-support.com/*",
"mandrillapp.com/*",
"docs.1dxr.com/*",
"*1dxr.com/*",
],
browser: "Firefox"
}
// {
// match: [
// // "google.com*", // match google.com urls
// "github.com*",
// ], browser: "Safari"
// }
]
}