-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.finicky.js
33 lines (32 loc) · 1.13 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
// Generated by Finicky Kickstart
// Save as ~/.finicky.js
module.exports = {
defaultBrowser: "Firefox",
handlers: [
{
match: ({ url }) => url.host.endsWith("notion.so") || url.host.endsWith("whatsapp.com")|| url.host.endsWith("typst.app"),
browser: {
name: "Orion",
},
},
{
match: ({ url }) => url.host.endsWith("openai.com"),
browser: {
name: "/Applications/DuckDuckGo.app",
appType: "appPath",
},
},
// {
// match: ({ url }) => url.host.endsWith("youtube.com"),
// browser: {
// name: "Firefox",
// },
// },
// {
// match: ({ url }) => url.host.endsWith("notion.so") || url.host.endsWith("whatsapp.com"),
// browser: {
// name: "Safari",
// },
// },
],
};