From 817c1c35f57055b880951e1c0ef4f418659f9df3 Mon Sep 17 00:00:00 2001 From: Manu Date: Fri, 12 May 2023 10:50:30 -0300 Subject: [PATCH] fix(#4): allow all origins (new chrome versions) --- src/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.py b/src/utils.py index 7b02098..d405ed6 100644 --- a/src/utils.py +++ b/src/utils.py @@ -58,7 +58,7 @@ def get_browser_tabs(filter_url: str = "") -> list: def run_browser(browser: dict) -> None: - sp.Popen([browser["path"], "--remote-debugging-port=9222"]) + sp.Popen([browser["path"], "--remote-debugging-port=9222", "--remote-allow-origins=*"]) def current_playing_tab(tabs: Tab) -> dict: