-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.finicky.js
41 lines (40 loc) · 876 Bytes
/
.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
module.exports = {
defaultBrowser: {
name: 'SafeBrowser',
appType: 'command',
command: '/Users/partenkirchen/.bin/safebrowser',
},
handlers: [
{
match: finicky.matchHostnames([
// Google
/.*\.?google\.com$/,
/.*\.?google$/,
// Gitlab
/.*\.?gitlab\.com$/,
// Github
/.*\.?github\.com$/,
// draw.io
'app.diagrams.net',
// Excalidraw
'excalidraw.com',
// OpenAI
'chatgpt.com',
/.*\.?openai\.com$/,
// Slite
/.*\.?slite\.com$/,
// Fyrst
/.*\.?fyrst\.de$/,
]),
browser: 'Safari',
},
//{
// match: 'googlemail.com',
// browser: {
// name: 'SafeBrowser',
// appType: 'command',
// command: '/Users/partenkirchen/.bin/safebrowser',
// },
//},
],
};