diff --git a/Plugins/Flow.Launcher.Plugin.Url/Settings.cs b/Plugins/Flow.Launcher.Plugin.Url/Settings.cs index a8d89e27f..c0b96b7a4 100644 --- a/Plugins/Flow.Launcher.Plugin.Url/Settings.cs +++ b/Plugins/Flow.Launcher.Plugin.Url/Settings.cs @@ -2,8 +2,12 @@ { public class Settings { - public string BrowserPath { get; set; } + public bool UseCustomBrowser { get; set; } = false; - public bool OpenInNewBrowserWindow { get; set; } = true; + public string BrowserPath { get; set; } = string.Empty; + + public bool OpenInNewBrowserWindow { get; set; } = false; + + public bool OpenInPrivateMode { get; set; } = false; } }