claude-chrome-parallel 3.0.2 → 3.0.3

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.
Files changed (2) hide show
  1. package/assets/demo.svg +88 -98
  2. package/package.json +1 -1
package/assets/demo.svg CHANGED
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400">
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 380">
2
2
  <defs>
3
3
  <linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
4
4
  <stop offset="0%" style="stop-color:#1a1a2e"/>
@@ -12,172 +12,162 @@
12
12
  <stop offset="0%" style="stop-color:#e74c3c"/>
13
13
  <stop offset="100%" style="stop-color:#c0392b"/>
14
14
  </linearGradient>
15
- <linearGradient id="purpleGrad" x1="0%" y1="0%" x2="100%" y2="0%">
16
- <stop offset="0%" style="stop-color:#6c5ce7"/>
17
- <stop offset="100%" style="stop-color:#a29bfe"/>
18
- </linearGradient>
19
15
  </defs>
20
16
 
21
17
  <!-- Background -->
22
- <rect width="800" height="400" fill="url(#bgGrad)"/>
18
+ <rect width="800" height="380" fill="url(#bgGrad)"/>
23
19
 
24
20
  <!-- Title -->
25
- <text x="400" y="35" text-anchor="middle" fill="#fff" font-family="system-ui, -apple-system, sans-serif" font-size="18" font-weight="bold">
21
+ <text x="400" y="30" text-anchor="middle" fill="#fff" font-family="system-ui, -apple-system, sans-serif" font-size="16" font-weight="bold">
26
22
  Chrome Extension vs Claude Chrome Parallel
27
23
  </text>
28
24
 
29
25
  <!-- LEFT SIDE: Chrome Extension (Failing) -->
30
- <g transform="translate(30, 60)">
26
+ <g transform="translate(25, 50)">
31
27
  <!-- Header -->
32
- <rect x="0" y="0" width="350" height="30" rx="8" ry="8" fill="#2d3436"/>
33
- <circle cx="15" cy="15" r="5" fill="#e74c3c"/>
34
- <circle cx="32" cy="15" r="5" fill="#f39c12"/>
35
- <circle cx="49" cy="15" r="5" fill="#27ae60"/>
36
- <text x="175" y="20" text-anchor="middle" fill="#b2bec3" font-family="monospace" font-size="12">Chrome Extension</text>
28
+ <rect x="0" y="0" width="360" height="28" rx="8" ry="8" fill="#2d3436"/>
29
+ <circle cx="14" cy="14" r="5" fill="#e74c3c"/>
30
+ <circle cx="30" cy="14" r="5" fill="#f39c12"/>
31
+ <circle cx="46" cy="14" r="5" fill="#27ae60"/>
32
+ <text x="180" y="18" text-anchor="middle" fill="#b2bec3" font-family="monospace" font-size="11">Chrome Extension</text>
37
33
 
38
34
  <!-- Terminal body -->
39
- <rect x="0" y="30" width="350" height="290" rx="0" ry="0" fill="#0d1117"/>
40
- <rect x="0" y="310" width="350" height="10" rx="0" ry="0" fill="#2d3436"/>
35
+ <rect x="0" y="28" width="360" height="270" fill="#0d1117"/>
36
+ <rect x="0" y="288" width="360" height="10" rx="0" ry="0" fill="#2d3436"/>
41
37
 
42
- <!-- Session 1 - Success then stops -->
43
- <text x="10" y="55" fill="#6c5ce7" font-family="monospace" font-size="11">
44
- <tspan>$ claude "Screenshot github.com"</tspan>
45
- </text>
46
- <text x="10" y="75" fill="#00b894" font-family="monospace" font-size="11">
47
- <tspan>Session 1: Taking screenshot...</tspan>
48
- <animate attributeName="opacity" values="0;1;1" dur="4s" repeatCount="indefinite"/>
49
- </text>
50
- <text x="10" y="95" fill="#00b894" font-family="monospace" font-size="11">
51
- <tspan>✓ Screenshot saved</tspan>
52
- <animate attributeName="opacity" values="0;0;1;1" dur="4s" repeatCount="indefinite"/>
38
+ <!-- Session 1 - Starts, completes -->
39
+ <text x="10" y="50" fill="#6c5ce7" font-family="monospace" font-size="11">$ claude "Screenshot github.com"</text>
40
+
41
+ <!-- Session 1 progress bar -->
42
+ <rect x="10" y="58" width="0" height="12" rx="2" fill="url(#successGrad)">
43
+ <animate attributeName="width" values="0;0;150;150;150;150;150;150;150;150;150" dur="10s" repeatCount="indefinite"/>
44
+ </rect>
45
+ <text x="10" y="85" fill="#00b894" font-family="monospace" font-size="11">
46
+ <tspan>✓ Session 1 completed</tspan>
47
+ <animate attributeName="opacity" values="0;0;0;1;1;1;1;1;1;1;1" dur="10s" repeatCount="indefinite"/>
53
48
  </text>
54
49
 
55
- <!-- Session 2 - Error -->
56
- <text x="10" y="130" fill="#6c5ce7" font-family="monospace" font-size="11">
50
+ <!-- Session 2 - Tries to start, gets error -->
51
+ <text x="10" y="115" fill="#6c5ce7" font-family="monospace" font-size="11">
57
52
  <tspan>$ claude "Screenshot google.com"</tspan>
58
- <animate attributeName="opacity" values="0;0;0;1;1" dur="4s" repeatCount="indefinite"/>
53
+ <animate attributeName="opacity" values="0;0;0;0;1;1;1;1;1;1;1" dur="10s" repeatCount="indefinite"/>
59
54
  </text>
60
- <text x="10" y="150" fill="#fdcb6e" font-family="monospace" font-size="11">
61
- <tspan>Session 2: Connecting...</tspan>
62
- <animate attributeName="opacity" values="0;0;0;0;1;1;0" dur="4s" repeatCount="indefinite"/>
55
+
56
+ <!-- Session 2 attempting -->
57
+ <text x="10" y="135" fill="#fdcb6e" font-family="monospace" font-size="11">
58
+ <tspan>Connecting to browser...</tspan>
59
+ <animate attributeName="opacity" values="0;0;0;0;0;1;0;0;0;0;0" dur="10s" repeatCount="indefinite"/>
63
60
  </text>
64
61
 
65
- <!-- Error message with animation -->
62
+ <!-- Error box -->
66
63
  <g>
67
- <animate attributeName="opacity" values="0;0;0;0;0;1;1" dur="4s" repeatCount="indefinite"/>
68
- <rect x="5" y="165" width="340" height="50" rx="4" fill="#2d1b1b"/>
69
- <text x="15" y="185" fill="#e74c3c" font-family="monospace" font-size="11" font-weight="bold">
64
+ <animate attributeName="opacity" values="0;0;0;0;0;0;1;1;1;1;1" dur="10s" repeatCount="indefinite"/>
65
+ <rect x="10" y="145" width="340" height="55" rx="4" fill="#2d1b1b"/>
66
+ <text x="20" y="167" fill="#e74c3c" font-family="monospace" font-size="12" font-weight="bold">
70
67
  ✗ Error: Session Detached
71
68
  </text>
72
- <text x="15" y="205" fill="#e17055" font-family="monospace" font-size="10">
69
+ <text x="20" y="187" fill="#e17055" font-family="monospace" font-size="10">
73
70
  Target closed. Another session took control.
74
71
  </text>
75
72
  </g>
76
73
 
77
- <!-- Blinking cursor -->
78
- <rect x="10" y="230" width="8" height="14" fill="#fff">
74
+ <!-- Blinking cursor at bottom -->
75
+ <rect x="10" y="215" width="8" height="14" fill="#fff">
79
76
  <animate attributeName="opacity" values="1;0;1" dur="1s" repeatCount="indefinite"/>
80
77
  </rect>
81
78
 
82
- <!-- Status bar -->
83
- <text x="175" y="335" text-anchor="middle" fill="#e74c3c" font-family="system-ui" font-size="14" font-weight="bold">
79
+ <!-- Status -->
80
+ <text x="180" y="270" text-anchor="middle" fill="#e74c3c" font-family="system-ui" font-size="13" font-weight="bold">
84
81
  ❌ Only 1 session at a time
85
82
  </text>
86
83
  </g>
87
84
 
88
85
  <!-- VS Divider -->
89
- <text x="400" y="220" text-anchor="middle" fill="#636e72" font-family="system-ui" font-size="24" font-weight="bold">VS</text>
86
+ <text x="400" y="200" text-anchor="middle" fill="#636e72" font-family="system-ui" font-size="22" font-weight="bold">VS</text>
90
87
 
91
88
  <!-- RIGHT SIDE: Claude Chrome Parallel (Success) -->
92
- <g transform="translate(420, 60)">
89
+ <g transform="translate(415, 50)">
93
90
  <!-- Header -->
94
- <rect x="0" y="0" width="350" height="30" rx="8" ry="8" fill="#2d3436"/>
95
- <circle cx="15" cy="15" r="5" fill="#e74c3c"/>
96
- <circle cx="32" cy="15" r="5" fill="#f39c12"/>
97
- <circle cx="49" cy="15" r="5" fill="#27ae60"/>
98
- <text x="175" y="20" text-anchor="middle" fill="#00b894" font-family="monospace" font-size="12" font-weight="bold">Claude Chrome Parallel</text>
91
+ <rect x="0" y="0" width="360" height="28" rx="8" ry="8" fill="#2d3436"/>
92
+ <circle cx="14" cy="14" r="5" fill="#e74c3c"/>
93
+ <circle cx="30" cy="14" r="5" fill="#f39c12"/>
94
+ <circle cx="46" cy="14" r="5" fill="#27ae60"/>
95
+ <text x="180" y="18" text-anchor="middle" fill="#00b894" font-family="monospace" font-size="11" font-weight="bold">Claude Chrome Parallel</text>
99
96
 
100
97
  <!-- Terminal body -->
101
- <rect x="0" y="30" width="350" height="290" rx="0" ry="0" fill="#0d1117"/>
102
- <rect x="0" y="310" width="350" height="10" rx="0" ry="0" fill="#2d3436"/>
98
+ <rect x="0" y="28" width="360" height="270" fill="#0d1117"/>
99
+ <rect x="0" y="288" width="360" height="10" rx="0" ry="0" fill="#2d3436"/>
100
+
101
+ <!-- ALL 5 SESSIONS START SIMULTANEOUSLY -->
103
102
 
104
- <!-- Multiple sessions all succeeding -->
105
103
  <!-- Session 1 -->
106
- <text x="10" y="55" fill="#6c5ce7" font-family="monospace" font-size="11">Session 1: github.com</text>
107
- <rect x="150" y="43" width="0" height="14" rx="2" fill="url(#successGrad)">
108
- <animate attributeName="width" values="0;80;80" dur="4s" repeatCount="indefinite"/>
104
+ <text x="10" y="50" fill="#a29bfe" font-family="monospace" font-size="11">Session 1: github.com</text>
105
+ <rect x="150" y="40" width="0" height="12" rx="2" fill="url(#successGrad)">
106
+ <animate attributeName="width" values="0;0;20;50;80;110;130;130;130;130;130" dur="10s" repeatCount="indefinite"/>
109
107
  </rect>
110
- <text x="240" y="55" fill="#00b894" font-family="monospace" font-size="11">
111
- <tspan>✓ Done</tspan>
112
- <animate attributeName="opacity" values="0;0;1;1" dur="4s" repeatCount="indefinite"/>
108
+ <text x="290" y="50" fill="#00b894" font-family="monospace" font-size="11">
109
+ <tspan>✓</tspan>
110
+ <animate attributeName="opacity" values="0;0;0;0;0;0;1;1;1;1;1" dur="10s" repeatCount="indefinite"/>
113
111
  </text>
114
112
 
115
113
  <!-- Session 2 -->
116
- <text x="10" y="80" fill="#6c5ce7" font-family="monospace" font-size="11">Session 2: google.com</text>
117
- <rect x="150" y="68" width="0" height="14" rx="2" fill="url(#successGrad)">
118
- <animate attributeName="width" values="0;0;70;70" dur="4s" repeatCount="indefinite"/>
114
+ <text x="10" y="75" fill="#a29bfe" font-family="monospace" font-size="11">Session 2: google.com</text>
115
+ <rect x="150" y="65" width="0" height="12" rx="2" fill="url(#successGrad)">
116
+ <animate attributeName="width" values="0;0;25;55;85;100;120;120;120;120;120" dur="10s" repeatCount="indefinite"/>
119
117
  </rect>
120
- <text x="230" y="80" fill="#00b894" font-family="monospace" font-size="11">
121
- <tspan>✓ Done</tspan>
122
- <animate attributeName="opacity" values="0;0;0;1;1" dur="4s" repeatCount="indefinite"/>
118
+ <text x="280" y="75" fill="#00b894" font-family="monospace" font-size="11">
119
+ <tspan>✓</tspan>
120
+ <animate attributeName="opacity" values="0;0;0;0;0;0;1;1;1;1;1" dur="10s" repeatCount="indefinite"/>
123
121
  </text>
124
122
 
125
123
  <!-- Session 3 -->
126
- <text x="10" y="105" fill="#6c5ce7" font-family="monospace" font-size="11">Session 3: amazon.com</text>
127
- <rect x="150" y="93" width="0" height="14" rx="2" fill="url(#successGrad)">
128
- <animate attributeName="width" values="0;0;0;90;90" dur="4s" repeatCount="indefinite"/>
124
+ <text x="10" y="100" fill="#a29bfe" font-family="monospace" font-size="11">Session 3: amazon.com</text>
125
+ <rect x="150" y="90" width="0" height="12" rx="2" fill="url(#successGrad)">
126
+ <animate attributeName="width" values="0;0;30;60;90;120;140;140;140;140;140" dur="10s" repeatCount="indefinite"/>
129
127
  </rect>
130
- <text x="250" y="105" fill="#00b894" font-family="monospace" font-size="11">
131
- <tspan>✓ Done</tspan>
132
- <animate attributeName="opacity" values="0;0;0;0;1;1" dur="4s" repeatCount="indefinite"/>
128
+ <text x="300" y="100" fill="#00b894" font-family="monospace" font-size="11">
129
+ <tspan>✓</tspan>
130
+ <animate attributeName="opacity" values="0;0;0;0;0;0;1;1;1;1;1" dur="10s" repeatCount="indefinite"/>
133
131
  </text>
134
132
 
135
133
  <!-- Session 4 -->
136
- <text x="10" y="130" fill="#6c5ce7" font-family="monospace" font-size="11">Session 4: naver.com</text>
137
- <rect x="150" y="118" width="0" height="14" rx="2" fill="url(#successGrad)">
138
- <animate attributeName="width" values="0;0;0;0;60;60" dur="4s" repeatCount="indefinite"/>
134
+ <text x="10" y="125" fill="#a29bfe" font-family="monospace" font-size="11">Session 4: naver.com</text>
135
+ <rect x="150" y="115" width="0" height="12" rx="2" fill="url(#successGrad)">
136
+ <animate attributeName="width" values="0;0;15;45;75;95;110;110;110;110;110" dur="10s" repeatCount="indefinite"/>
139
137
  </rect>
140
- <text x="220" y="130" fill="#00b894" font-family="monospace" font-size="11">
141
- <tspan>✓ Done</tspan>
142
- <animate attributeName="opacity" values="0;0;0;0;0;1;1" dur="4s" repeatCount="indefinite"/>
138
+ <text x="270" y="125" fill="#00b894" font-family="monospace" font-size="11">
139
+ <tspan>✓</tspan>
140
+ <animate attributeName="opacity" values="0;0;0;0;0;0;1;1;1;1;1" dur="10s" repeatCount="indefinite"/>
143
141
  </text>
144
142
 
145
143
  <!-- Session 5 -->
146
- <text x="10" y="155" fill="#6c5ce7" font-family="monospace" font-size="11">Session 5: twitter.com</text>
147
- <rect x="150" y="143" width="0" height="14" rx="2" fill="url(#successGrad)">
148
- <animate attributeName="width" values="0;0;0;0;0;75;75" dur="4s" repeatCount="indefinite"/>
144
+ <text x="10" y="150" fill="#a29bfe" font-family="monospace" font-size="11">Session 5: twitter.com</text>
145
+ <rect x="150" y="140" width="0" height="12" rx="2" fill="url(#successGrad)">
146
+ <animate attributeName="width" values="0;0;22;52;82;112;125;125;125;125;125" dur="10s" repeatCount="indefinite"/>
149
147
  </rect>
150
- <text x="235" y="155" fill="#00b894" font-family="monospace" font-size="11">
151
- <tspan>✓ Done</tspan>
152
- <animate attributeName="opacity" values="0;0;0;0;0;0;1" dur="4s" repeatCount="indefinite"/>
148
+ <text x="285" y="150" fill="#00b894" font-family="monospace" font-size="11">
149
+ <tspan>✓</tspan>
150
+ <animate attributeName="opacity" values="0;0;0;0;0;0;1;1;1;1;1" dur="10s" repeatCount="indefinite"/>
153
151
  </text>
154
152
 
155
- <!-- Stats box -->
153
+ <!-- Result summary box -->
156
154
  <g>
157
- <animate attributeName="opacity" values="0;0;0;0;0;0;1" dur="4s" repeatCount="indefinite"/>
158
- <rect x="10" y="180" width="330" height="80" rx="6" fill="#1e3a1e"/>
159
- <text x="175" y="205" text-anchor="middle" fill="#00b894" font-family="system-ui" font-size="13" font-weight="bold">
155
+ <animate attributeName="opacity" values="0;0;0;0;0;0;0;1;1;1;1" dur="10s" repeatCount="indefinite"/>
156
+ <rect x="10" y="170" width="340" height="70" rx="6" fill="#1a3a1a"/>
157
+ <text x="180" y="195" text-anchor="middle" fill="#00b894" font-family="system-ui" font-size="12" font-weight="bold">
160
158
  All 5 sessions completed in parallel!
161
159
  </text>
162
- <text x="175" y="230" text-anchor="middle" fill="#55efc4" font-family="monospace" font-size="12">
163
- Total time: 1.2s (vs 6.0s sequential)
160
+ <text x="180" y="215" text-anchor="middle" fill="#55efc4" font-family="monospace" font-size="11">
161
+ Total: 1.4s (Sequential would take 7.0s)
164
162
  </text>
165
- <text x="175" y="250" text-anchor="middle" fill="#81ecec" font-family="monospace" font-size="11">
163
+ <text x="180" y="232" text-anchor="middle" fill="#81ecec" font-family="system-ui" font-size="11">
166
164
  ⚡ 5x faster
167
165
  </text>
168
166
  </g>
169
167
 
170
- <!-- Status bar -->
171
- <text x="175" y="335" text-anchor="middle" fill="#00b894" font-family="system-ui" font-size="14" font-weight="bold">
168
+ <!-- Status -->
169
+ <text x="180" y="270" text-anchor="middle" fill="#00b894" font-family="system-ui" font-size="13" font-weight="bold">
172
170
  ✅ 20+ concurrent sessions
173
171
  </text>
174
172
  </g>
175
-
176
- <!-- Bottom CTA -->
177
- <g>
178
- <rect x="250" y="365" width="300" height="28" rx="14" fill="url(#purpleGrad)"/>
179
- <text x="400" y="384" text-anchor="middle" fill="#fff" font-family="system-ui" font-size="12" font-weight="bold">
180
- npm install -g claude-chrome-parallel
181
- </text>
182
- </g>
183
173
  </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-chrome-parallel",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "MCP server for parallel Claude Code browser sessions - no more 'Detached' errors",
5
5
  "main": "dist/index.js",
6
6
  "bin": {