File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -60,10 +60,13 @@ The logs capture:
60
60
61
61
Access Chrome's developer tools inside Claude Desktop to investigate client-side errors:
62
62
63
- 1 . Enable DevTools:
63
+ 1 . Enable the ` allowDevTools ` flag in your ` developer_settings.json ` file:
64
+
64
65
``` bash
65
- jq ' .allowDevTools = true' ~ /Library/Application\ Support/Claude/developer_settings.json > tmp.json \
66
- && mv tmp.json ~ /Library/Application\ Support/Claude/developer_settings.json
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
67
70
```
68
71
69
72
2 . Open DevTools: ` Command-Option-Shift-i `
You can’t perform that action at this time.
0 commit comments