Skip to content

Commit 9a25335

Browse files
authored
Simplify JSON for installing dev tools
1 parent 5841488 commit 9a25335

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

docs/tools/debugging.mdx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,10 @@ The logs capture:
6060

6161
Access Chrome's developer tools inside Claude Desktop to investigate client-side errors:
6262

63-
1. Enable the `allowDevTools` flag in your `developer_settings.json` file:
63+
1. Create a `developer_settings.json` file with `allowDevTools` set to true:
6464

6565
```bash
66-
[ -s ~/Library/Application\ Support/Claude/developer_settings.json ] \
67-
&& jq '.allowDevTools = true' ~/Library/Application\ Support/Claude/developer_settings.json > tmp.json \
68-
|| echo '{"allowDevTools": true}' > tmp.json \
69-
&& mv tmp.json ~/Library/Application\ Support/Claude/developer_settings.json
66+
echo '{"allow_dev_tools": true }' > ~/Library/Application\ Support/Claude/developer_settings.json
7067
```
7168

7269
2. Open DevTools: `Command-Option-Shift-i`

0 commit comments

Comments
 (0)