Skip to content

Commit 99c3f34

Browse files
committed
chore: update CLI generator to generate all possible tools
1 parent def53dd commit 99c3f34

6 files changed

Lines changed: 1051 additions & 789 deletions

File tree

skills/chrome-devtools-cli/SKILL.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,30 @@ chrome-devtools take_snapshot # Take a text snapshot of the page from the a11y t
123123
chrome-devtools take_snapshot --verbose true --filePath "s.txt" # Take a verbose snapshot and save to file
124124
```
125125

126+
## Extensions
127+
128+
Extensions tools are disabled by default. Enable them with `chrome-devtools start --categoryExtensions=true`.
129+
130+
```bash
131+
chrome-devtools list_extensions # Lists all the Chrome extensions installed in the browser
132+
chrome-devtools install_extension "/path/to/extension" # Installs a Chrome extension from the given path
133+
chrome-devtools uninstall_extension "extension_id" # Uninstalls a Chrome extension by its ID
134+
chrome-devtools reload_extension "extension_id" # Reloads an unpacked Chrome extension by its ID
135+
chrome-devtools trigger_extension_action "extension_id" # Triggers the default action of an extension by its ID
136+
```
137+
138+
## Experimental Features
139+
140+
Experimental tools are disabled by default. Enable them with the corresponding flag during `start`.
141+
142+
```bash
143+
chrome-devtools click_at 100 200 # Clicks at the provided coordinates (requires --experimentalVision=true)
144+
chrome-devtools screencast_start # Starts a screencast recording (requires --experimentalScreencast=true and ffmpeg)
145+
chrome-devtools screencast_stop # Stops the active screencast
146+
chrome-devtools list_webmcp_tools # List all WebMCP tools (requires --experimentalWebmcp=true)
147+
chrome-devtools get_tab_id # Get the tab ID for the current page (requires --experimentalInteropTools=true)
148+
```
149+
126150
## Service Management
127151

128152
```bash

0 commit comments

Comments
 (0)