Skip to content

Commit

Permalink
fix(#4): allow all origins (new chrome versions)
Browse files Browse the repository at this point in the history
  • Loading branch information
manucabral committed May 12, 2023
1 parent 785a1a1 commit 817c1c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 817c1c3

Please sign in to comment.