Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ The Chrome extension allows Dev Browser to control your existing Chrome browser

When active, Claude can control your existing Chrome tabs with all your logged-in sessions, cookies, and extensions intact.

## Configuration

Optionally set `DEV_BROWSER_EXECUTABLE_PATH` to use a custom Chromium binary.

## Permissions

To skip permission prompts, add to `~/.claude/settings.json`:
Expand Down
1 change: 1 addition & 0 deletions skills/dev-browser/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ export async function serve(options: ServeOptions = {}): Promise<DevBrowserServe
// Launch persistent context - this persists cookies, localStorage, cache, etc.
const context: BrowserContext = await chromium.launchPersistentContext(userDataDir, {
headless,
executablePath: process.env.DEV_BROWSER_EXECUTABLE_PATH || undefined,
args: [`--remote-debugging-port=${cdpPort}`],
});
console.log("Browser launched with persistent profile...");
Expand Down