create-openclaw-bot 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,15 @@
1
+ @echo off
2
+ echo ====== OpenClaw - Chrome Debug Mode ======
3
+ echo.
4
+ echo Dang tat Chrome cu (neu co)...
5
+ taskkill /F /IM chrome.exe >nul 2>&1
6
+ timeout /t 3 /nobreak >nul
7
+ echo Dang mo Chrome voi Debug Mode...
8
+ start "" "C:\Program Files\Google\Chrome\Application\chrome.exe" ^
9
+ --remote-debugging-port=9222 ^
10
+ --remote-allow-origins=* ^
11
+ --user-data-dir="%TEMP%\chrome-debug"
12
+ timeout /t 4 /nobreak >nul
13
+ powershell -Command "try { Invoke-WebRequest -Uri 'http://localhost:9222/json/version' -UseBasicParsing -TimeoutSec 5 | Out-Null; Write-Host 'OK! Chrome Debug Mode dang chay.' -ForegroundColor Green } catch { Write-Host 'LOI: Port 9222 chua mo.' -ForegroundColor Red }"
14
+ echo.
15
+ pause