From c9ca9ad4ba6350d0e514116e7501d412321a82fd Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Thu, 4 Sep 2025 17:30:08 +0800 Subject: [PATCH] Add more settings --- Plugins/Flow.Launcher.Plugin.Url/Settings.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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; } }