Skip to content

Commit a64ee0b

Browse files
authored
Merge branch 'main' into crux-for-trace
2 parents 4cef374 + 8f3fcf6 commit a64ee0b

39 files changed

Lines changed: 1276 additions & 566 deletions

.claude-plugin/marketplace.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@
99
"plugins": [
1010
{
1111
"name": "chrome-devtools-mcp",
12-
"source": {
13-
"source": "github",
14-
"repo": "ChromeDevTools/chrome-devtools-mcp"
15-
},
12+
"source": "./",
1613
"description": "Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer"
1714
}
1815
]

.github/workflows/convetional-commit.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 'Conventional Commit'
22

33
on:
4+
merge_group:
45
pull_request_target:
56
types:
67
# Defaults
@@ -19,6 +20,7 @@ jobs:
1920
permissions:
2021
pull-requests: read
2122
steps:
22-
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
23+
- if: github.event_name != 'merge_group'
24+
uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
2325
env:
2426
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/presubmit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Check code before submitting
33
permissions: read-all
44

55
on:
6+
merge_group:
67
push:
78
branches:
89
- main

.github/workflows/run-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Compile and run tests
33
permissions: read-all
44

55
on:
6+
merge_group:
67
push:
78
branches:
89
- main

GEMINI.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Instructions
2+
3+
- use `npm run build` to run tsc and test build
4+
- use `npm run test` to run tests, run all tests to verify correctness

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Chrome DevTools MCP will not start the browser instance automatically using this
9696

9797
<details>
9898
<summary>Claude Code</summary>
99-
Use the Claude Code CLI to add the Chrome DevTools MCP server (<a href="https://docs.anthropic.com/en/docs/claude-code/mcp">guide</a>):
99+
Use the Claude Code CLI to add the Chrome DevTools MCP server (<a href="https://code.claude.com/docs/en/mcp">guide</a>):
100100

101101
```bash
102102
claude mcp add chrome-devtools npx chrome-devtools-mcp@latest
@@ -433,6 +433,10 @@ The Chrome DevTools MCP server supports the following configuration option:
433433
Additional arguments for Chrome. Only applies when Chrome is launched by chrome-devtools-mcp.
434434
- **Type:** array
435435

436+
- **`--ignoreDefaultChromeArg`/ `--ignore-default-chrome-arg`**
437+
Explicitly disable default arguments for Chrome. Only applies when Chrome is launched by chrome-devtools-mcp.
438+
- **Type:** array
439+
436440
- **`--categoryEmulation`/ `--category-emulation`**
437441
Set to false to exclude tools related to emulation.
438442
- **Type:** boolean

docs/tool-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130

131131
**Parameters:**
132132

133-
- **pageIdx** (number) **(required)**: The index of the page to close. Call [`list_pages`](#list_pages) to list pages.
133+
- **pageId** (number) **(required)**: The ID of the page to close. Call [`list_pages`](#list_pages) to list pages.
134134

135135
---
136136

@@ -172,7 +172,7 @@
172172

173173
**Parameters:**
174174

175-
- **pageIdx** (number) **(required)**: The index of the page to select. Call [`list_pages`](#list_pages) to get available pages.
175+
- **pageId** (number) **(required)**: The ID of the page to select. Call [`list_pages`](#list_pages) to get available pages.
176176
- **bringToFront** (boolean) _(optional)_: Whether to focus the page and bring it to the top.
177177

178178
---

0 commit comments

Comments
 (0)