Install
openclaw skills install @panchenbo/browser-opener-skillOpens URLs in multiple browsers (Chrome, Firefox, Edge, Safari) across platforms, supporting default, specific browsers, incognito, new windows, and headless...
openclaw skills install @panchenbo/browser-opener-skillThis skill provides cross-platform browser opening capabilities with support for multiple browsers.
Open a URL with the default browser:
# Using the browser opener script
python scripts/open_browser.py --url https://www.google.com
Open a URL with a specific browser:
# Open with Chrome
python scripts/open_browser.py --url https://www.google.com --browser chrome
# Open with Firefox
python scripts/open_browser.py --url https://www.google.com --browser firefox
# Open with Edge
python scripts/open_browser.py --url https://www.google.com --browser edge
chrome, google-chrome, google-chrome-stablefirefox, mozilla-firefoxedge, microsoft-edgesafari, apple-safaridefault (uses system default browser)See examples/ for comprehensive usage examples including:
For detailed information about browser support on different platforms, see references/browser_support.md.
The scripts/open_browser.py script supports the following options:
--url: URL to open (required)--browser: Browser to use (optional, defaults to 'default')--new-window: Open in new window (optional)--incognito: Open in incognito/private mode (optional)--headless: Open in headless mode (optional, for testing)The script includes comprehensive error handling for: