Loading...
Loading...
This skill should be used for browser automation tasks using Chrome DevTools Protocol (CDP). Triggers when users need to launch Chrome with remote debugging, navigate pages, execute JavaScript in browser context, capture screenshots, or interactively select DOM elements. No MCP server required.
npx skill4agent add cexll/myclaude browsernpm install --prefix ~/.claude/skills/browser/browser wslocalhost:9222scripts/start.js # Fresh profile
scripts/start.js --profile # Use persistent profile (keeps cookies/auth)scripts/nav.js https://example.com # Navigate current tab
scripts/nav.js https://example.com --new # Open in new tabscripts/eval.js 'document.title'
scripts/eval.js '(() => { const x = 1; return x + 1; })()'scripts/screenshot.js{ path, filename }scripts/pick.js "Click the submit button"scripts/start.js --profilescripts/nav.js <url>scripts/eval.js 'document.querySelector(...)'scripts/screenshot.jsscripts/pick.js--profile