#!/usr/bin/env zsh # Start Google Chrome stable with remote debugging on port 9222 and a persistent profile USER_DATA_DIR="$HOME/.config/avanzacast-chrome-profile" mkdir -p "$USER_DATA_DIR" exec /usr/bin/google-chrome-stable \ --remote-debugging-port=9222 \ --user-data-dir="$USER_DATA_DIR" \ --no-default-browser-check \ --disable-extensions \ --disable-first-run-ui \ --disable-component-update \ "$@" &