-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser_rules.json
62 lines (62 loc) · 2.17 KB
/
browser_rules.json
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
51
52
53
54
55
56
57
58
59
60
61
62
{
"opera": {
"path": "R:\\Program Files\\Opera\\launcher.exe",
"arguments": "--disable-update --start-maximized --allow-outdated-plugins --enable-easy-off-store-extension-install --save-page-as-mhtml"
},
"vivaldi": {
"path": "R:\\Program Files\\Vivaldi\\Application\\vivaldi.exe",
"arguments": "--disable-update --start-maximized --allow-outdated-plugins --enable-easy-off-store-extension-install --save-page-as-mhtml",
"rules": [
"github.com",
"stackoverflow.com",
"twitch.tv",
{"regex": ":/*(.*\\.)?ups\\.com"},
"zillow.com"
]
},
"chrome": {
"path": "R:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
"arguments": "--disable-update --start-maximized --allow-outdated-plugins --save-page-as-mhtml",
"rules": [
{
"text": "test.tld",
"arguments": ["--profile-directory=Profile 12"]
}
]
},
"firefox": {
"path": "R:\\Program Files\\Mozilla Firefox\\firefox.exe",
"rules": [
{
"text": "firefox.com",
"arguments": ["-new-instance", "-P", "default"],
"clipboard": true
}
]
},
"thorium": {
"path": "%LocalAppData%\\Thorium\\Application\\thorium.exe",
"arguments": "--disable-update --start-maximized --allow-outdated-plugins --save-page-as-mhtml",
"rules": [
{
"regex": {"pattern": ":/*(.*\\.)?discord(app)?\\.com", "flags": ["IGNORECASE"]},
"arguments": "--incognito --new-window"
},
{"regex": "public\\.tld"},
{
"regex": {"pattern": "Private\\.tld", "flags": ["IGNORECASE", "DOTALL"]},
"arguments": "--incognito --new-window"
}
]
},
"edge": {
"path": "%ProgramFiles(x86)%\\Microsoft\\Edge\\Application\\msedge.exe",
"arguments": "--disable-update --allow-outdated-plugins --save-page-as-mhtml"
},
"clipboard": {
"clipboard": true,
"rules": [
"clip.me"
]
}
}