@dynamicu/chromedebug-mcp 2.6.7 → 2.7.1
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/CLAUDE.md +17 -1
- package/README.md +1 -1
- package/chrome-extension/activation-manager.js +10 -10
- package/chrome-extension/background.js +1045 -736
- package/chrome-extension/browser-recording-manager.js +1 -1
- package/chrome-extension/chrome-debug-logger.js +168 -0
- package/chrome-extension/chrome-session-manager.js +5 -5
- package/chrome-extension/console-interception-library.js +430 -0
- package/chrome-extension/content.css +16 -16
- package/chrome-extension/content.js +739 -221
- package/chrome-extension/data-buffer.js +5 -5
- package/chrome-extension/dom-tracker.js +9 -9
- package/chrome-extension/extension-config.js +1 -1
- package/chrome-extension/firebase-client.js +13 -13
- package/chrome-extension/frame-capture.js +20 -38
- package/chrome-extension/license-helper.js +33 -7
- package/chrome-extension/manifest.free.json +3 -6
- package/chrome-extension/network-tracker.js +9 -9
- package/chrome-extension/options.html +10 -0
- package/chrome-extension/options.js +21 -8
- package/chrome-extension/performance-monitor.js +17 -17
- package/chrome-extension/popup.html +230 -193
- package/chrome-extension/popup.js +146 -458
- package/chrome-extension/pro/enhanced-capture.js +406 -0
- package/chrome-extension/pro/frame-editor.html +433 -0
- package/chrome-extension/pro/frame-editor.js +1567 -0
- package/chrome-extension/pro/function-tracker.js +843 -0
- package/chrome-extension/pro/jszip.min.js +13 -0
- package/chrome-extension/upload-manager.js +7 -7
- package/dist/chromedebug-extension-free.zip +0 -0
- package/package.json +3 -1
- package/scripts/webpack.config.free.cjs +8 -8
- package/scripts/webpack.config.pro.cjs +2 -0
- package/src/cli.js +2 -2
- package/src/database.js +55 -7
- package/src/index.js +9 -6
- package/src/mcp/server.js +2 -2
- package/src/services/process-manager.js +10 -6
- package/src/services/process-tracker.js +10 -5
- package/src/services/profile-manager.js +17 -2
- package/src/validation/schemas.js +12 -11
- package/src/index-direct.js +0 -157
- package/src/index-modular.js +0 -219
- package/src/index-monolithic-backup.js +0 -2230
- package/src/legacy/chrome-controller-old.js +0 -1406
- package/src/legacy/index-express.js +0 -625
- package/src/legacy/index-old.js +0 -977
- package/src/legacy/routes.js +0 -260
- package/src/legacy/shared-storage.js +0 -101
package/CLAUDE.md
CHANGED
|
@@ -123,6 +123,22 @@ npm run compile
|
|
|
123
123
|
- **Screen Recording**: Capture video + console logs for debugging
|
|
124
124
|
- **Frame Capture**: Optimized frame capture for videos
|
|
125
125
|
- **WebRTC Override**: Redirects webcam to screen capture
|
|
126
|
+
- **Download ZIP Export**: Export recordings as ZIP packages with screenshots and JSON metadata
|
|
127
|
+
|
|
128
|
+
### Chrome Extension Versions
|
|
129
|
+
|
|
130
|
+
**FREE Version** (npm package / direct install):
|
|
131
|
+
- 5 recordings per day limit
|
|
132
|
+
- All core recording features
|
|
133
|
+
- Local storage only
|
|
134
|
+
- No external data transmission
|
|
135
|
+
|
|
136
|
+
**PRO Version** (Chrome Web Store):
|
|
137
|
+
- Unlimited recordings
|
|
138
|
+
- Function tracing for React/Vue/vanilla JS
|
|
139
|
+
- Enhanced element capture with component data
|
|
140
|
+
- All data stored locally - no license validation or external servers
|
|
141
|
+
- Privacy-first: no user data transmitted externally
|
|
126
142
|
|
|
127
143
|
### MCP Tools Available
|
|
128
144
|
|
|
@@ -153,7 +169,7 @@ npm run compile
|
|
|
153
169
|
- `save_restore_point` - Save browser state restore point
|
|
154
170
|
- `restore_from_point` - Restore browser to saved point
|
|
155
171
|
- `list_restore_points` - List restore points for workflow
|
|
156
|
-
- `
|
|
172
|
+
- `chromedebug_show_frames` - Display frame recording info
|
|
157
173
|
- `get_frame_session_info` - Get frame capture session info
|
|
158
174
|
- `get_frame` - Get specific frame from recording
|
|
159
175
|
- `get_frame_screenshot` - Get screenshot image data for a specific frame as base64
|
package/README.md
CHANGED
|
@@ -517,6 +517,6 @@ Screen recordings now automatically capture all user interactions:
|
|
|
517
517
|
### MCP Tools for Recording
|
|
518
518
|
|
|
519
519
|
- `get_recording` - Retrieve a recording by ID to analyze video and logs
|
|
520
|
-
- `
|
|
520
|
+
- `chromedebug_show_frames` - Display frame-by-frame recording with interactions and logs
|
|
521
521
|
- `get_frame` - Get specific frame with its interactions and console logs
|
|
522
522
|
- `get_screen_interactions` - Query specific interaction data from recordings
|
|
@@ -28,8 +28,8 @@ async function loadActivations() {
|
|
|
28
28
|
licenseKey = stored.ls_license_key;
|
|
29
29
|
currentInstanceId = stored.ls_instance_id;
|
|
30
30
|
|
|
31
|
-
console.log('[Activation Manager] Current instance ID:', currentInstanceId);
|
|
32
|
-
console.log('[Activation Manager] Storage:', stored);
|
|
31
|
+
// console.log('[Activation Manager] Current instance ID:', currentInstanceId);
|
|
32
|
+
// console.log('[Activation Manager] Storage:', stored);
|
|
33
33
|
|
|
34
34
|
if (!licenseKey) {
|
|
35
35
|
showError('License key not found. Please activate your license first.');
|
|
@@ -40,8 +40,8 @@ async function loadActivations() {
|
|
|
40
40
|
const data = await licenseClient.listActivations(licenseKey);
|
|
41
41
|
activations = data.activations || [];
|
|
42
42
|
|
|
43
|
-
console.log('[Activation Manager] Fetched activations:', JSON.stringify(activations, null, 2));
|
|
44
|
-
console.log('[Activation Manager] Comparing against current instance ID:', currentInstanceId);
|
|
43
|
+
// console.log('[Activation Manager] Fetched activations:', JSON.stringify(activations, null, 2));
|
|
44
|
+
// console.log('[Activation Manager] Comparing against current instance ID:', currentInstanceId);
|
|
45
45
|
|
|
46
46
|
// Show activation status
|
|
47
47
|
document.getElementById('activation-status').textContent =
|
|
@@ -82,12 +82,12 @@ function renderActivations() {
|
|
|
82
82
|
// Compare against identifier (unique per activation), not name (same for all activations from this device)
|
|
83
83
|
const isCurrentDevice = currentInstanceId && activation.identifier === currentInstanceId;
|
|
84
84
|
|
|
85
|
-
console.log('[Activation Manager] Activation', index + 1, ':', {
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
});
|
|
85
|
+
// console.log('[Activation Manager] Activation', index + 1, ':', {
|
|
86
|
+
// name: activation.name,
|
|
87
|
+
// identifier: activation.identifier,
|
|
88
|
+
// currentInstanceId: currentInstanceId,
|
|
89
|
+
// isCurrentDevice: isCurrentDevice
|
|
90
|
+
// });
|
|
91
91
|
|
|
92
92
|
if (isCurrentDevice) {
|
|
93
93
|
item.classList.add('current-device');
|