mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add Chrome, Edge, Firefox Browser Profile
This commit is contained in:
parent
d2e689a51a
commit
40d7baac86
1 changed files with 25 additions and 0 deletions
|
|
@ -104,6 +104,31 @@ namespace Flow.Launcher.Infrastructure.UserSettings
|
|||
PrivateArg = "",
|
||||
EnablePrivate = false,
|
||||
Editable = false
|
||||
},
|
||||
new()
|
||||
{
|
||||
Name = "Google Chrome",
|
||||
Path = "chrome",
|
||||
PrivateArg = "-incognito",
|
||||
EnablePrivate = false,
|
||||
Editable = false
|
||||
},
|
||||
new()
|
||||
{
|
||||
Name = "Mozilla Firefox",
|
||||
Path = "firefox",
|
||||
PrivateArg = "-private",
|
||||
EnablePrivate = false,
|
||||
Editable = false
|
||||
}
|
||||
,
|
||||
new()
|
||||
{
|
||||
Name = "MS Edge",
|
||||
Path = "msedge",
|
||||
PrivateArg = "-inprivate",
|
||||
EnablePrivate = false,
|
||||
Editable = false
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue