@dynamicu/chromedebug-mcp 2.7.0 → 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 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
- name: activation.name,
87
- identifier: activation.identifier,
88
- currentInstanceId: currentInstanceId,
89
- isCurrentDevice: isCurrentDevice
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');