From c15c5fb5ca22b699ea8c13cb7abb94063234e4e3 Mon Sep 17 00:00:00 2001 From: tcsenpai Date: Thu, 28 May 2026 16:20:22 +0200 Subject: [PATCH] Add Helium browser profile path to discovery list Helium (https://helium.computer, bundle id net.imput.helium) is a Chromium-based browser on macOS. Its user-data-dir lives at ~/Library/Application Support/net.imput.helium, which was missing from the PROFILES discovery list, so Way 1 (chrome://inspect checkbox) attaches failed with 'DevToolsActivePort not found' even when Helium had remote debugging enabled and was listening on 127.0.0.1:9222. --- src/browser_harness/daemon.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/browser_harness/daemon.py b/src/browser_harness/daemon.py index 0f0f2555..02983d4b 100644 --- a/src/browser_harness/daemon.py +++ b/src/browser_harness/daemon.py @@ -36,6 +36,7 @@ def _load_env_file(p): PROFILES = [ Path.home() / "Library/Application Support/Google/Chrome", Path.home() / "Library/Application Support/Google/Chrome Canary", + Path.home() / "Library/Application Support/net.imput.helium", Path.home() / "Library/Application Support/Comet", Path.home() / "Library/Application Support/Arc/User Data", Path.home() / "Library/Application Support/Dia/User Data",