We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2e689a commit 40d7baaCopy full SHA for 40d7baa
Flow.Launcher.Infrastructure/UserSettings/Settings.cs
@@ -104,6 +104,31 @@ public CustomBrowserViewModel CustomBrowser
104
PrivateArg = "",
105
EnablePrivate = false,
106
Editable = false
107
+ },
108
+ new()
109
+ {
110
+ Name = "Google Chrome",
111
+ Path = "chrome",
112
+ PrivateArg = "-incognito",
113
+ EnablePrivate = false,
114
+ Editable = false
115
116
117
118
+ Name = "Mozilla Firefox",
119
+ Path = "firefox",
120
+ PrivateArg = "-private",
121
122
123
+ }
124
+ ,
125
126
127
+ Name = "MS Edge",
128
+ Path = "msedge",
129
+ PrivateArg = "-inprivate",
130
131
132
}
133
};
134
0 commit comments