From a3d444df20ef233112c58b9844f6e77894117efd Mon Sep 17 00:00:00 2001 From: E44 <129310925+programmer-44@users.noreply.github.com> Date: Sat, 13 Jun 2026 20:38:28 +0200 Subject: [PATCH] fix: disable chrome translate closes #56 --- control/open_browser.go | 1 + 1 file changed, 1 insertion(+) diff --git a/control/open_browser.go b/control/open_browser.go index 2d45d58..8709758 100644 --- a/control/open_browser.go +++ b/control/open_browser.go @@ -24,6 +24,7 @@ func openBrowserWindow(url string) error { args := []string{ fmt.Sprintf("--app=%s", url), fmt.Sprintf("--user-data-dir=%s", browserProfileDirPath), + "--disable-features=Translate", } errs := []string{}