chrometools-mcp 3.5.4 → 3.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/COMPONENT_MAPPING_SPEC.md +1217 -1217
- package/NUL +1 -0
- package/SPEC-swagger-api-tools.md +3101 -3101
- package/browser/page-manager.js +7 -0
- package/index.js +62 -3
- package/models/DATEPICKER_IMPLEMENTATION.md +543 -543
- package/models/ModelRegistry.js +115 -115
- package/package.json +1 -1
- package/server/tool-definitions.js +1 -1
- package/utils/actions/click-action.js +43 -7
- package/SPEC-IMPROVEMENTS.md +0 -173
- package/SPEC-pom-integration.md +0 -227
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [3.5.5] - 2026-03-27
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- **getNetworkRequest responseBody** — Response body now included via CDP `Network.getResponseBody` using the same session that captured the request. JSON auto-minified, large bodies truncated at 50KB
|
|
9
|
+
- **analyzePage non-HTML support** — JSON, XML, and plain text pages now return `rawContent` field instead of an empty APOM tree. Detects `document.contentType` and extracts text content
|
|
10
|
+
- **async executeScript** — Async IIFEs and Promises are now automatically awaited. Previously returned `{}`, now returns actual resolved values
|
|
11
|
+
- **Click diagnostics** — Click tool output now shows which method was used (`[cdp-coordinates]`, `[dom-sequence-intercepted]`, `[dom-sequence-fallback]`) for non-default click paths
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- **Click fallback event sequence** — Path A (intercepted) and Tier 3 (last resort) now dispatch full `pointerdown → mousedown → focus → pointerup → mouseup → click` sequence instead of bare `el.click()`. Improves compatibility with UI Kit components using Pointer Events API
|
|
15
|
+
- **executeScript description** — Added `scrollTo`, `listNetworkRequests`, `getNetworkRequest` to the "don't use for" guidance
|
|
16
|
+
|
|
5
17
|
## [3.5.4] - 2026-02-16
|
|
6
18
|
|
|
7
19
|
### Fixed
|