From b2c618d216e8402944c9c2a8036e919495db2549 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 16 Feb 2026 22:31:58 +0000 Subject: [PATCH] Automated documentation update [skip ci] --- src/claude-code/README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/claude-code/README.md b/src/claude-code/README.md index 7559aa9..bfe32b7 100644 --- a/src/claude-code/README.md +++ b/src/claude-code/README.md @@ -58,6 +58,38 @@ Replace `vscode` with the actual name of your user (see `remoteUser` property). ], ``` +## Chrome Integration (`claude --chrome`) + +Claude Code supports a Chrome integration via `claude --chrome`. To use this inside a Dev Container, combine the `claude-code` feature with the [`chrome`](https://github.com/tmaier/devcontainer-features/tree/main/src/chrome) feature configured for VNC display mode: + +```jsonc +// .devcontainer/devcontainer.json +{ + "features": { + "ghcr.io/devcontainers/features/desktop-lite:1": {}, + "ghcr.io/tmaier/devcontainer-features/chrome:2": { + // Extensions: + // fdgfkebogiimcoedlicjlajpkdmockpc = Meta Pixel Helper (https://chromewebstore.google.com/detail/meta-pixel-helper/fdgfkebogiimcoedlicjlajpkdmockpc) + // fmkadmapgofadopljbjfkapdkoienihi = React Developer Tools (https://chromewebstore.google.com/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi) + "extensions": "{\"fdgfkebogiimcoedlicjlajpkdmockpc\": {}, \"fmkadmapgofadopljbjfkapdkoienihi\": {}}", + "displayMode": "vnc" + }, + "ghcr.io/tmaier/devcontainer-features/claude-code:2": {} + }, + "forwardPorts": [5901, 6080], + "portsAttributes": { + "5901": { "label": "tigervnc" }, + "6080": { "label": "novnc" } + } +} +``` + +After the container starts, connect to the desktop via: +- **noVNC (browser):** http://localhost:6080 +- **VNC client:** vnc://localhost:5901 + +Then run `claude --chrome` in the terminal to launch the Chrome integration. + ## Usage After installation, run `claude` in your project directory to get started.