Chrome Debug Launcher
/install chrome-debug-launcher
Chrome Debug Launcher
Launch two independent Chrome instances: one normal, one with remote debugging on port 9222.
Steps
- Kill all Chrome processes
- Launch normal Chrome (no extra args)
- Wait 2 seconds, then launch debug Chrome
Commands by Platform
Windows (PowerShell)
# Step 1: Kill Chrome
taskkill /F /IM chrome.exe /T 2>$null
Start-Sleep -Seconds 2
# Step 2: Normal Chrome
Start-Process "C:\Program Files\Google\Chrome\Application\chrome.exe"
# Step 3: Debug Chrome (after 2s)
Start-Sleep -Seconds 2
Start-Process "C:\Program Files\Google\Chrome\Application\chrome.exe" -ArgumentList '--remote-debugging-port=9222', '--user-data-dir=C:\selenum\ChromeProfile'
macOS (bash)
# Step 1: Kill Chrome
pkill -f "Google Chrome" 2>/dev/null; sleep 2
# Step 2: Normal Chrome
open -a "Google Chrome"
# Step 3: Debug Chrome (after 2s)
sleep 2
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome \
--remote-debugging-port=9222 \
--user-data-dir="$HOME/selenium/ChromeProfile" &
Result
- Instance 1: Normal Chrome, default profile, regular use
- Instance 2: Debug Chrome, port 9222, isolated user data dir
- Connect via Selenium/Playwright:
http://localhost:9222
- Connect via Selenium/Playwright:
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install chrome-debug-launcher - After installation, invoke the skill by name or use
/chrome-debug-launcher - Provide required inputs per the skill's parameter spec and get structured output
What is Chrome Debug Launcher?
Launch two independent Chrome browser instances — one normal and one with remote debugging enabled on port 9222. Activate when user says "打开两个浏览器", "开调试浏览器",... It is an AI Agent Skill for Claude Code / OpenClaw, with 600 downloads so far.
How do I install Chrome Debug Launcher?
Run "/install chrome-debug-launcher" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Chrome Debug Launcher free?
Yes, Chrome Debug Launcher is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Chrome Debug Launcher support?
Chrome Debug Launcher is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Chrome Debug Launcher?
It is built and maintained by chengzongxin (@chengzongxin); the current version is v1.0.1.