Skip to content

Commit f27e587

Browse files
authored
Automated documentation update (#18)
Automated documentation update
2 parents d2c8fdf + b2c618d commit f27e587

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

src/claude-code/README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,38 @@ Replace `vscode` with the actual name of your user (see `remoteUser` property).
5858
],
5959
```
6060

61+
## Chrome Integration (`claude --chrome`)
62+
63+
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:
64+
65+
```jsonc
66+
// .devcontainer/devcontainer.json
67+
{
68+
"features": {
69+
"ghcr.io/devcontainers/features/desktop-lite:1": {},
70+
"ghcr.io/tmaier/devcontainer-features/chrome:2": {
71+
// Extensions:
72+
// fdgfkebogiimcoedlicjlajpkdmockpc = Meta Pixel Helper (https://chromewebstore.google.com/detail/meta-pixel-helper/fdgfkebogiimcoedlicjlajpkdmockpc)
73+
// fmkadmapgofadopljbjfkapdkoienihi = React Developer Tools (https://chromewebstore.google.com/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi)
74+
"extensions": "{\"fdgfkebogiimcoedlicjlajpkdmockpc\": {}, \"fmkadmapgofadopljbjfkapdkoienihi\": {}}",
75+
"displayMode": "vnc"
76+
},
77+
"ghcr.io/tmaier/devcontainer-features/claude-code:2": {}
78+
},
79+
"forwardPorts": [5901, 6080],
80+
"portsAttributes": {
81+
"5901": { "label": "tigervnc" },
82+
"6080": { "label": "novnc" }
83+
}
84+
}
85+
```
86+
87+
After the container starts, connect to the desktop via:
88+
- **noVNC (browser):** http://localhost:6080
89+
- **VNC client:** vnc://localhost:5901
90+
91+
Then run `claude --chrome` in the terminal to launch the Chrome integration.
92+
6193
## Usage
6294

6395
After installation, run `claude` in your project directory to get started.

0 commit comments

Comments
 (0)