mcpbrowser 0.2.26 → 0.2.27
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/extension/icon.png +0 -0
- package/extension/icon.svg +49 -28
- package/extension/package.json +1 -1
- package/package.json +1 -1
package/extension/icon.png
CHANGED
|
Binary file
|
package/extension/icon.svg
CHANGED
|
@@ -1,35 +1,56 @@
|
|
|
1
1
|
<svg width="128" height="128" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<!--
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
<
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
2
|
+
<!-- Modern gradient with MCP typography focus -->
|
|
3
|
+
<defs>
|
|
4
|
+
<linearGradient id="bg6" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
5
|
+
<stop offset="0%" style="stop-color:#4F46E5;stop-opacity:1" />
|
|
6
|
+
<stop offset="100%" style="stop-color:#6366F1;stop-opacity:1" />
|
|
7
|
+
</linearGradient>
|
|
8
|
+
</defs>
|
|
9
|
+
|
|
10
|
+
<!-- Gradient background -->
|
|
11
|
+
<rect width="128" height="128" rx="24" fill="url(#bg6)"/>
|
|
12
|
+
|
|
13
|
+
<!-- Large white rounded square -->
|
|
14
|
+
<rect x="16" y="16" width="96" height="96" rx="16" fill="white" opacity="0.98"/>
|
|
15
|
+
|
|
16
|
+
<!-- Top section with browser chrome -->
|
|
17
|
+
<rect x="24" y="24" width="80" height="14" rx="7" fill="#F8FAFC"/>
|
|
18
|
+
|
|
19
|
+
<!-- Browser dots -->
|
|
20
|
+
<circle cx="32" cy="31" r="2" fill="#E5E7EB"/>
|
|
21
|
+
<circle cx="40" cy="31" r="2" fill="#E5E7EB"/>
|
|
22
|
+
<circle cx="48" cy="31" r="2" fill="#E5E7EB"/>
|
|
23
|
+
|
|
24
|
+
<!-- Lock with shield -->
|
|
25
|
+
<g transform="translate(72, 26)">
|
|
26
|
+
<circle cx="5" cy="5" r="5" fill="#10B981"/>
|
|
27
|
+
<path d="M 3.5 5 L 3.5 3.8 C 3.5 3 4 2.5 5 2.5 C 6 2.5 6.5 3 6.5 3.8 L 6.5 5"
|
|
28
|
+
stroke="white" stroke-width="0.8" fill="none"/>
|
|
29
|
+
<rect x="3" y="5" width="4" height="4" rx="0.5" fill="white"/>
|
|
30
|
+
</g>
|
|
31
|
+
|
|
32
|
+
<!-- Large MCP text - main focus -->
|
|
33
|
+
<text x="64" y="68" font-family="Arial, sans-serif" font-size="32" font-weight="bold" fill="#4F46E5" text-anchor="middle">MCP</text>
|
|
34
|
+
|
|
35
|
+
<!-- Subtitle -->
|
|
36
|
+
<text x="64" y="82" font-family="Arial, sans-serif" font-size="9" fill="#475569" text-anchor="middle">BROWSER</text>
|
|
37
|
+
|
|
38
|
+
<!-- Bottom decorative line -->
|
|
39
|
+
<rect x="36" y="92" width="56" height="2" rx="1" fill="#E0E7FF"/>
|
|
40
|
+
|
|
41
|
+
<!-- Connection dots -->
|
|
42
|
+
<circle cx="44" cy="100" r="2.5" fill="#10B981"/>
|
|
43
|
+
<circle cx="52" cy="100" r="2.5" fill="#10B981" opacity="0.6"/>
|
|
44
|
+
<circle cx="60" cy="100" r="2.5" fill="#10B981" opacity="0.3"/>
|
|
45
|
+
|
|
46
|
+
<!-- Security badge -->
|
|
47
|
+
<g transform="translate(66, 96)">
|
|
48
|
+
<circle cx="6" cy="4" r="6" fill="#10B981"/>
|
|
49
|
+
<path d="M 4 4 L 5.5 5.5 L 8.5 2.5"
|
|
24
50
|
stroke="white"
|
|
25
|
-
stroke-width="2"
|
|
51
|
+
stroke-width="1.2"
|
|
26
52
|
stroke-linecap="round"
|
|
27
53
|
stroke-linejoin="round"
|
|
28
54
|
fill="none"/>
|
|
29
55
|
</g>
|
|
30
|
-
|
|
31
|
-
<!-- Connection indicator (small dots) -->
|
|
32
|
-
<circle cx="90" cy="48" r="3" fill="#10B981"/>
|
|
33
|
-
<circle cx="98" cy="48" r="2" fill="#10B981" opacity="0.7"/>
|
|
34
|
-
<circle cx="104" cy="48" r="1.5" fill="#10B981" opacity="0.4"/>
|
|
35
56
|
</svg>
|
package/extension/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "mcpbrowser",
|
|
3
3
|
"displayName": "MCP Browser",
|
|
4
4
|
"description": "Lightweight MCP server-extension for in-browser web page fetching - handles login, SSO, and anti-crawler restrictions. Should be used when standard fetch_webpage fails",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.27",
|
|
6
6
|
"publisher": "cherchyk",
|
|
7
7
|
"icon": "icon.png",
|
|
8
8
|
"engines": {
|
package/package.json
CHANGED