@dynamicu/chromedebug-mcp 2.7.0 → 2.7.2
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 +16 -0
- package/chrome-extension/activation-manager.js +10 -10
- package/chrome-extension/background.js +473 -256
- package/chrome-extension/chrome-session-manager.js +5 -5
- package/chrome-extension/content.js +305 -119
- package/chrome-extension/data-buffer.js +5 -5
- package/chrome-extension/dom-tracker.js +9 -9
- package/chrome-extension/firebase-client.js +13 -13
- package/chrome-extension/frame-capture.js +20 -38
- package/chrome-extension/license-helper.js +9 -9
- package/chrome-extension/manifest.free.json +3 -3
- package/chrome-extension/network-tracker.js +9 -9
- package/chrome-extension/options.html +10 -0
- package/chrome-extension/options.js +20 -7
- package/chrome-extension/performance-monitor.js +17 -17
- package/chrome-extension/popup.html +8 -1
- package/chrome-extension/popup.js +71 -92
- package/chrome-extension/pro/frame-editor.html +23 -0
- package/chrome-extension/pro/frame-editor.js +101 -30
- package/chrome-extension/pro/function-tracker.js +10 -10
- package/chrome-extension/upload-manager.js +7 -7
- package/dist/chromedebug-extension-free.zip +0 -0
- package/package.json +1 -1
- package/src/database.js +69 -0
- package/src/validation/schemas.js +19 -13
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
|
|
|
@@ -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');
|