web-agent-bridge 2.3.0 โ 2.4.0
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/README.ar.md +506 -31
- package/README.md +574 -47
- package/bin/agent-runner.js +10 -1
- package/package.json +12 -4
- package/public/agent-workspace.html +347 -0
- package/public/browser.html +484 -0
- package/public/commander-dashboard.html +243 -0
- package/public/css/agent-workspace.css +1713 -0
- package/public/css/premium.css +317 -317
- package/public/demo.html +259 -259
- package/public/index.html +738 -644
- package/public/js/agent-workspace.js +1740 -0
- package/public/mesh-dashboard.html +309 -382
- package/public/premium-dashboard.html +2487 -2487
- package/public/premium.html +791 -791
- package/public/script/wab.min.js +124 -87
- package/script/ai-agent-bridge.js +154 -84
- package/sdk/agent-mesh.js +287 -171
- package/sdk/commander.js +262 -0
- package/sdk/index.d.ts +83 -0
- package/sdk/index.js +374 -260
- package/sdk/package.json +1 -1
- package/server/config/secrets.js +13 -5
- package/server/index.js +191 -5
- package/server/middleware/adminAuth.js +6 -1
- package/server/middleware/auth.js +11 -2
- package/server/middleware/rateLimits.js +78 -2
- package/server/migrations/002_premium_features.sql +418 -418
- package/server/migrations/003_ads_integer_cents.sql +33 -0
- package/server/models/db.js +121 -1
- package/server/routes/admin-premium.js +671 -671
- package/server/routes/admin.js +16 -2
- package/server/routes/ads.js +130 -0
- package/server/routes/agent-workspace.js +378 -0
- package/server/routes/api.js +21 -2
- package/server/routes/auth.js +26 -6
- package/server/routes/commander.js +316 -0
- package/server/routes/mesh.js +370 -201
- package/server/routes/premium-v2.js +686 -686
- package/server/routes/premium.js +724 -724
- package/server/routes/sovereign.js +78 -0
- package/server/routes/universal.js +177 -0
- package/server/routes/wab-api.js +20 -5
- package/server/services/agent-chat.js +506 -0
- package/server/services/agent-learning.js +230 -77
- package/server/services/agent-memory.js +625 -625
- package/server/services/agent-mesh.js +260 -67
- package/server/services/agent-symphony.js +553 -517
- package/server/services/agent-tasks.js +1807 -0
- package/server/services/commander.js +738 -0
- package/server/services/edge-compute.js +440 -0
- package/server/services/fairness-engine.js +409 -0
- package/server/services/local-ai.js +389 -0
- package/server/services/plugins.js +771 -747
- package/server/services/price-intelligence.js +565 -0
- package/server/services/price-shield.js +1137 -0
- package/server/services/search-engine.js +357 -0
- package/server/services/security.js +513 -0
- package/server/services/self-healing.js +843 -843
- package/server/services/swarm.js +788 -788
- package/server/services/universal-scraper.js +661 -0
- package/server/services/vision.js +871 -871
- package/server/ws.js +61 -1
- package/public/admin/dashboard.html +0 -848
- package/public/admin/login.html +0 -84
- package/public/video/tutorial.mp4 +0 -0
|
@@ -0,0 +1,484 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en" dir="ltr">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>WAB Browser โ The Intelligent Web Agent Browser</title>
|
|
7
|
+
<meta name="description" content="Download WAB Browser - the intelligent browser with Ghost Mode, Scam Shield, and Smart Search. Your data stays on your device.">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
|
11
|
+
<link rel="stylesheet" href="/css/styles.css">
|
|
12
|
+
<style>
|
|
13
|
+
.browser-hero {
|
|
14
|
+
min-height: 100vh;
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
background: linear-gradient(135deg, #0f0f23 0%, #16213e 50%, #0a192f 100%);
|
|
19
|
+
position: relative;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
padding: 120px 20px 80px;
|
|
22
|
+
}
|
|
23
|
+
.browser-hero::before {
|
|
24
|
+
content: '';
|
|
25
|
+
position: absolute;
|
|
26
|
+
top: -50%;
|
|
27
|
+
left: -50%;
|
|
28
|
+
width: 200%;
|
|
29
|
+
height: 200%;
|
|
30
|
+
background: radial-gradient(circle at 30% 50%, rgba(14,165,233,0.08) 0%, transparent 50%),
|
|
31
|
+
radial-gradient(circle at 70% 50%, rgba(16,185,129,0.06) 0%, transparent 50%);
|
|
32
|
+
animation: heroGlow 8s ease-in-out infinite alternate;
|
|
33
|
+
}
|
|
34
|
+
@keyframes heroGlow {
|
|
35
|
+
0% { transform: translate(0, 0); }
|
|
36
|
+
100% { transform: translate(-3%, 2%); }
|
|
37
|
+
}
|
|
38
|
+
.hero-content {
|
|
39
|
+
position: relative;
|
|
40
|
+
text-align: center;
|
|
41
|
+
max-width: 900px;
|
|
42
|
+
z-index: 1;
|
|
43
|
+
}
|
|
44
|
+
.browser-logo {
|
|
45
|
+
display: inline-block;
|
|
46
|
+
margin-bottom: 32px;
|
|
47
|
+
filter: drop-shadow(0 0 40px rgba(14,165,233,0.4));
|
|
48
|
+
animation: logoPulse 3s ease-in-out infinite;
|
|
49
|
+
}
|
|
50
|
+
@keyframes logoPulse {
|
|
51
|
+
0%, 100% { filter: drop-shadow(0 0 40px rgba(14,165,233,0.4)); }
|
|
52
|
+
50% { filter: drop-shadow(0 0 60px rgba(14,165,233,0.6)); }
|
|
53
|
+
}
|
|
54
|
+
.hero-title {
|
|
55
|
+
font-size: clamp(2.5rem, 6vw, 4.5rem);
|
|
56
|
+
font-weight: 900;
|
|
57
|
+
letter-spacing: -2px;
|
|
58
|
+
margin-bottom: 16px;
|
|
59
|
+
background: linear-gradient(135deg, #e2e8f0, #0ea5e9);
|
|
60
|
+
-webkit-background-clip: text;
|
|
61
|
+
-webkit-text-fill-color: transparent;
|
|
62
|
+
background-clip: text;
|
|
63
|
+
}
|
|
64
|
+
.hero-subtitle {
|
|
65
|
+
font-size: clamp(1rem, 2vw, 1.3rem);
|
|
66
|
+
color: #94a3b8;
|
|
67
|
+
margin-bottom: 40px;
|
|
68
|
+
line-height: 1.6;
|
|
69
|
+
max-width: 600px;
|
|
70
|
+
margin-left: auto;
|
|
71
|
+
margin-right: auto;
|
|
72
|
+
}
|
|
73
|
+
.download-section {
|
|
74
|
+
display: flex;
|
|
75
|
+
flex-wrap: wrap;
|
|
76
|
+
gap: 16px;
|
|
77
|
+
justify-content: center;
|
|
78
|
+
margin-bottom: 32px;
|
|
79
|
+
}
|
|
80
|
+
.download-btn {
|
|
81
|
+
display: inline-flex;
|
|
82
|
+
align-items: center;
|
|
83
|
+
gap: 12px;
|
|
84
|
+
padding: 16px 32px;
|
|
85
|
+
background: linear-gradient(135deg, #0ea5e9, #0284c7);
|
|
86
|
+
color: white;
|
|
87
|
+
border: none;
|
|
88
|
+
border-radius: 12px;
|
|
89
|
+
font-size: 16px;
|
|
90
|
+
font-weight: 700;
|
|
91
|
+
cursor: pointer;
|
|
92
|
+
transition: all 0.3s;
|
|
93
|
+
text-decoration: none;
|
|
94
|
+
box-shadow: 0 4px 20px rgba(14,165,233,0.3);
|
|
95
|
+
}
|
|
96
|
+
.download-btn:hover {
|
|
97
|
+
transform: translateY(-2px);
|
|
98
|
+
box-shadow: 0 8px 30px rgba(14,165,233,0.4);
|
|
99
|
+
}
|
|
100
|
+
.download-btn svg { flex-shrink: 0; }
|
|
101
|
+
.download-btn .btn-text { text-align: left; }
|
|
102
|
+
.download-btn .btn-label { font-size: 11px; opacity: 0.8; font-weight: 500; }
|
|
103
|
+
.download-btn.secondary {
|
|
104
|
+
background: rgba(255,255,255,0.06);
|
|
105
|
+
border: 1px solid rgba(255,255,255,0.1);
|
|
106
|
+
box-shadow: none;
|
|
107
|
+
}
|
|
108
|
+
.download-btn.secondary:hover {
|
|
109
|
+
background: rgba(255,255,255,0.1);
|
|
110
|
+
box-shadow: 0 4px 16px rgba(0,0,0,0.3);
|
|
111
|
+
}
|
|
112
|
+
.hero-note {
|
|
113
|
+
color: #64748b;
|
|
114
|
+
font-size: 13px;
|
|
115
|
+
}
|
|
116
|
+
.hero-note a { color: #0ea5e9; text-decoration: none; }
|
|
117
|
+
|
|
118
|
+
/* Features */
|
|
119
|
+
.browser-features {
|
|
120
|
+
padding: 100px 20px;
|
|
121
|
+
background: #0a0a1a;
|
|
122
|
+
}
|
|
123
|
+
.features-grid {
|
|
124
|
+
display: grid;
|
|
125
|
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
126
|
+
gap: 24px;
|
|
127
|
+
max-width: 1100px;
|
|
128
|
+
margin: 0 auto;
|
|
129
|
+
}
|
|
130
|
+
.feature-card {
|
|
131
|
+
background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
|
|
132
|
+
border: 1px solid rgba(255,255,255,0.06);
|
|
133
|
+
border-radius: 16px;
|
|
134
|
+
padding: 32px;
|
|
135
|
+
transition: all 0.3s;
|
|
136
|
+
}
|
|
137
|
+
.feature-card:hover {
|
|
138
|
+
border-color: rgba(14,165,233,0.3);
|
|
139
|
+
transform: translateY(-4px);
|
|
140
|
+
box-shadow: 0 12px 40px rgba(0,0,0,0.3);
|
|
141
|
+
}
|
|
142
|
+
.feature-icon {
|
|
143
|
+
width: 56px;
|
|
144
|
+
height: 56px;
|
|
145
|
+
background: rgba(14,165,233,0.1);
|
|
146
|
+
border-radius: 14px;
|
|
147
|
+
display: flex;
|
|
148
|
+
align-items: center;
|
|
149
|
+
justify-content: center;
|
|
150
|
+
font-size: 28px;
|
|
151
|
+
margin-bottom: 20px;
|
|
152
|
+
}
|
|
153
|
+
.feature-card h3 { font-size: 18px; margin-bottom: 8px; color: #e2e8f0; }
|
|
154
|
+
.feature-card p { color: #94a3b8; font-size: 14px; line-height: 1.6; }
|
|
155
|
+
|
|
156
|
+
.section-title {
|
|
157
|
+
text-align: center;
|
|
158
|
+
font-size: clamp(1.8rem, 4vw, 2.5rem);
|
|
159
|
+
font-weight: 800;
|
|
160
|
+
margin-bottom: 16px;
|
|
161
|
+
color: #e2e8f0;
|
|
162
|
+
}
|
|
163
|
+
.section-subtitle {
|
|
164
|
+
text-align: center;
|
|
165
|
+
color: #64748b;
|
|
166
|
+
font-size: 16px;
|
|
167
|
+
margin-bottom: 60px;
|
|
168
|
+
max-width: 600px;
|
|
169
|
+
margin-left: auto;
|
|
170
|
+
margin-right: auto;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/* How it works */
|
|
174
|
+
.how-section {
|
|
175
|
+
padding: 100px 20px;
|
|
176
|
+
background: #0f0f23;
|
|
177
|
+
}
|
|
178
|
+
.steps {
|
|
179
|
+
display: flex;
|
|
180
|
+
flex-wrap: wrap;
|
|
181
|
+
gap: 32px;
|
|
182
|
+
justify-content: center;
|
|
183
|
+
max-width: 1100px;
|
|
184
|
+
margin: 0 auto;
|
|
185
|
+
}
|
|
186
|
+
.step {
|
|
187
|
+
flex: 1;
|
|
188
|
+
min-width: 240px;
|
|
189
|
+
max-width: 300px;
|
|
190
|
+
text-align: center;
|
|
191
|
+
}
|
|
192
|
+
.step-number {
|
|
193
|
+
width: 48px; height: 48px;
|
|
194
|
+
background: linear-gradient(135deg, #0ea5e9, #0284c7);
|
|
195
|
+
border-radius: 50%;
|
|
196
|
+
display: flex;
|
|
197
|
+
align-items: center;
|
|
198
|
+
justify-content: center;
|
|
199
|
+
font-size: 20px;
|
|
200
|
+
font-weight: 800;
|
|
201
|
+
color: white;
|
|
202
|
+
margin: 0 auto 16px;
|
|
203
|
+
}
|
|
204
|
+
.step h3 { font-size: 16px; margin-bottom: 8px; color: #e2e8f0; }
|
|
205
|
+
.step p { color: #94a3b8; font-size: 13px; line-height: 1.5; }
|
|
206
|
+
|
|
207
|
+
/* Privacy */
|
|
208
|
+
.privacy-section {
|
|
209
|
+
padding: 80px 20px;
|
|
210
|
+
background: linear-gradient(135deg, rgba(16,185,129,0.05), rgba(14,165,233,0.05));
|
|
211
|
+
}
|
|
212
|
+
.privacy-box {
|
|
213
|
+
max-width: 800px;
|
|
214
|
+
margin: 0 auto;
|
|
215
|
+
background: rgba(255,255,255,0.02);
|
|
216
|
+
border: 1px solid rgba(255,255,255,0.06);
|
|
217
|
+
border-radius: 16px;
|
|
218
|
+
padding: 48px;
|
|
219
|
+
text-align: center;
|
|
220
|
+
}
|
|
221
|
+
.privacy-box h2 { font-size: 28px; margin-bottom: 16px; color: #10b981; }
|
|
222
|
+
.privacy-box p { color: #94a3b8; font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
|
|
223
|
+
.privacy-list {
|
|
224
|
+
list-style: none;
|
|
225
|
+
text-align: left;
|
|
226
|
+
max-width: 500px;
|
|
227
|
+
margin: 24px auto 0;
|
|
228
|
+
}
|
|
229
|
+
.privacy-list li {
|
|
230
|
+
padding: 10px 0;
|
|
231
|
+
color: #e2e8f0;
|
|
232
|
+
font-size: 14px;
|
|
233
|
+
border-bottom: 1px solid rgba(255,255,255,0.04);
|
|
234
|
+
display: flex;
|
|
235
|
+
align-items: center;
|
|
236
|
+
gap: 12px;
|
|
237
|
+
}
|
|
238
|
+
.privacy-list li::before { content: 'โ'; color: #10b981; font-weight: 700; font-size: 16px; }
|
|
239
|
+
|
|
240
|
+
/* Footer */
|
|
241
|
+
.browser-footer {
|
|
242
|
+
padding: 40px 20px;
|
|
243
|
+
background: #080816;
|
|
244
|
+
text-align: center;
|
|
245
|
+
}
|
|
246
|
+
.browser-footer p { color: #64748b; font-size: 13px; }
|
|
247
|
+
.browser-footer a { color: #0ea5e9; text-decoration: none; }
|
|
248
|
+
|
|
249
|
+
.coming-soon {
|
|
250
|
+
display: inline-block;
|
|
251
|
+
padding: 4px 10px;
|
|
252
|
+
background: rgba(245,158,11,0.15);
|
|
253
|
+
color: #f59e0b;
|
|
254
|
+
border-radius: 6px;
|
|
255
|
+
font-size: 11px;
|
|
256
|
+
font-weight: 600;
|
|
257
|
+
text-transform: uppercase;
|
|
258
|
+
letter-spacing: 0.5px;
|
|
259
|
+
margin-left: 8px;
|
|
260
|
+
}
|
|
261
|
+
</style>
|
|
262
|
+
</head>
|
|
263
|
+
<body style="background:#0f0f23;color:#e2e8f0;">
|
|
264
|
+
|
|
265
|
+
<!-- โโโโโโโ NAVBAR โโโโโโโ -->
|
|
266
|
+
<nav class="navbar" id="navbar" style="background:rgba(15,15,35,0.9);backdrop-filter:blur(20px);">
|
|
267
|
+
<div class="container">
|
|
268
|
+
<a href="/" class="navbar-brand">
|
|
269
|
+
<div class="brand-icon">โก</div>
|
|
270
|
+
<span>WAB</span>
|
|
271
|
+
</a>
|
|
272
|
+
<ul class="navbar-links">
|
|
273
|
+
<li><a href="/">Home</a></li>
|
|
274
|
+
<li><a href="#features">Features</a></li>
|
|
275
|
+
<li><a href="#privacy">Privacy</a></li>
|
|
276
|
+
<li><a href="/docs">Docs</a></li>
|
|
277
|
+
</ul>
|
|
278
|
+
<div class="navbar-actions">
|
|
279
|
+
<a href="#download" class="btn btn-primary btn-sm">Download</a>
|
|
280
|
+
</div>
|
|
281
|
+
</div>
|
|
282
|
+
</nav>
|
|
283
|
+
|
|
284
|
+
<!-- โโโโโโโ HERO โโโโโโโ -->
|
|
285
|
+
<section class="browser-hero" id="download">
|
|
286
|
+
<div class="hero-content">
|
|
287
|
+
<div class="browser-logo">
|
|
288
|
+
<svg width="120" height="120" viewBox="0 0 120 120">
|
|
289
|
+
<defs>
|
|
290
|
+
<linearGradient id="logoGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
291
|
+
<stop offset="0%" style="stop-color:#0ea5e9"/>
|
|
292
|
+
<stop offset="100%" style="stop-color:#10b981"/>
|
|
293
|
+
</linearGradient>
|
|
294
|
+
</defs>
|
|
295
|
+
<circle cx="60" cy="60" r="54" fill="none" stroke="url(#logoGrad)" stroke-width="2.5"/>
|
|
296
|
+
<circle cx="60" cy="60" r="40" fill="none" stroke="url(#logoGrad)" stroke-width="1" opacity="0.3"/>
|
|
297
|
+
<circle cx="60" cy="60" r="25" fill="none" stroke="url(#logoGrad)" stroke-width="0.5" opacity="0.15"/>
|
|
298
|
+
<path d="M36 78 L48 42 L60 66 L72 42 L84 78" fill="none" stroke="url(#logoGrad)" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
|
299
|
+
<circle cx="60" cy="36" r="5" fill="#0ea5e9"/>
|
|
300
|
+
<circle cx="60" cy="36" r="8" fill="none" stroke="#0ea5e9" stroke-width="1" opacity="0.3"/>
|
|
301
|
+
</svg>
|
|
302
|
+
</div>
|
|
303
|
+
|
|
304
|
+
<h1 class="hero-title">WAB Browser</h1>
|
|
305
|
+
<p class="hero-subtitle">
|
|
306
|
+
The intelligent browser with Ghost Mode stealth, AI-powered Scam Shield,
|
|
307
|
+
and Smart Search. Your personal web agent that protects you while you browse.
|
|
308
|
+
</p>
|
|
309
|
+
|
|
310
|
+
<div class="download-section">
|
|
311
|
+
<a href="/downloads/wab-browser-setup.exe" class="download-btn" id="download-win">
|
|
312
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor"><path d="M3 5.557l7.357-1.002v7.112H3V5.557zm0 12.886l7.357 1.002v-7.112H3v6.11zM11.643 4.39L22 2.857v8.81h-10.357V4.39zm0 15.22L22 21.143v-8.81H11.643v7.277z"/></svg>
|
|
313
|
+
<div class="btn-text">
|
|
314
|
+
<div class="btn-label">Download for</div>
|
|
315
|
+
<div>Windows</div>
|
|
316
|
+
</div>
|
|
317
|
+
</a>
|
|
318
|
+
<a href="/pwa/" class="download-btn" id="download-mobile">
|
|
319
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor"><path d="M7 1C5.9 1 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H7zm5 20c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm5-3H7V4h10v14z"/></svg>
|
|
320
|
+
<div class="btn-text">
|
|
321
|
+
<div class="btn-label">Install PWA for</div>
|
|
322
|
+
<div>Android / iOS</div>
|
|
323
|
+
</div>
|
|
324
|
+
</a>
|
|
325
|
+
<a href="/downloads/wab-browser.dmg" class="download-btn secondary" id="download-mac">
|
|
326
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
|
|
327
|
+
<div class="btn-text">
|
|
328
|
+
<div class="btn-label">Download for</div>
|
|
329
|
+
<div>macOS</div>
|
|
330
|
+
</div>
|
|
331
|
+
</a>
|
|
332
|
+
<a href="/downloads/wab-browser.AppImage" class="download-btn secondary" id="download-linux">
|
|
333
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor"><path d="M12.504 0c-.155 0-.315.008-.48.021-4.226.333-3.105 4.807-3.17 6.298-.076 1.092-.3 1.953-1.05 3.02-.885 1.051-2.127 2.75-2.716 4.521-.278.832-.41 1.684-.287 2.489a.424.424 0 00-.11.135c-.26.268-.45.6-.663.839-.199.199-.485.267-.797.4-.313.136-.658.269-.864.68-.09.189-.136.394-.132.602 0 .199.027.4.055.536.058.399.116.728.04.97-.249.68-.28 1.145-.106 1.484.174.334.535.47.94.601.81.2 1.91.135 2.774.6.926.466 1.866.67 2.616.47.526-.116.97-.464 1.208-.946.587-.003 1.23-.269 2.26-.334.699-.058 1.574.267 2.577.2.025.134.063.198.114.333l.003.003c.391.778 1.113 1.368 1.884 1.43.871.074 1.543-.137 2.073-.467.264-.164.587-.328.653-.525.045-.132.19-.373.075-.553a.463.463 0 00-.115-.124c-.107-.066-.121-.145-.064-.27.138-.296.228-.652.123-1.03-.106-.386-.36-.593-.568-.835-.193-.199-.41-.402-.486-.665-.075-.263.058-.527.057-.786 0-.145-.062-.32-.1-.44a2.28 2.28 0 00-.555-.867c-.373-.354-.712-.515-1.012-.857-.09-.139-.262-.38-.315-.59a1.997 1.997 0 01.07-.857c.1-.276.177-.523.177-.862 0-.364-.136-.849-.454-1.257-.318-.397-.772-.639-1.269-.804a4.24 4.24 0 00-.906-.2c.098-.237.196-.402.26-.627.167-.567.151-1.19-.08-1.738a2.856 2.856 0 00-.35-.671c-.238-.332-.579-.536-.832-.786-.283-.295-.457-.596-.73-.924C10.807 3.44 9.02 2.077 7.374 2.12c-.26.007-.535.074-.77.2-1.195.625-1.108 2.218-.746 3.533.402 1.467-.3 2.614-1.093 3.726"/></svg>
|
|
334
|
+
<div class="btn-text">
|
|
335
|
+
<div class="btn-label">Download for</div>
|
|
336
|
+
<div>Linux</div>
|
|
337
|
+
</div>
|
|
338
|
+
</a>
|
|
339
|
+
</div>
|
|
340
|
+
|
|
341
|
+
<p class="hero-note">
|
|
342
|
+
v1.0.0 ยท Free ยท <a href="/privacy">Privacy Policy</a> ยท Your data stays on your device
|
|
343
|
+
</p>
|
|
344
|
+
|
|
345
|
+
<div style="margin-top:24px;padding:16px 24px;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06);border-radius:12px;max-width:600px;margin-left:auto;margin-right:auto;text-align:left;">
|
|
346
|
+
<p style="color:#94a3b8;font-size:12px;margin-bottom:8px;font-weight:600;">๐ Verify Your Download</p>
|
|
347
|
+
<p style="color:#64748b;font-size:11px;line-height:1.6;margin-bottom:8px;">
|
|
348
|
+
Always verify the checksum after downloading. Open a terminal and run:
|
|
349
|
+
</p>
|
|
350
|
+
<code style="display:block;background:#0a0a1a;padding:8px 12px;border-radius:6px;font-size:11px;color:#0ea5e9;word-break:break-all;font-family:'JetBrains Mono',monospace;">
|
|
351
|
+
# Windows (PowerShell)<br>
|
|
352
|
+
Get-FileHash .\wab-browser-setup.exe -Algorithm SHA256<br><br>
|
|
353
|
+
# macOS / Linux<br>
|
|
354
|
+
shasum -a 256 wab-browser-setup.exe
|
|
355
|
+
</code>
|
|
356
|
+
<p style="color:#64748b;font-size:11px;margin-top:8px;">
|
|
357
|
+
Expected SHA-256: <a href="/downloads/SHA256SUMS.txt" style="color:#10b981;text-decoration:none;font-family:'JetBrains Mono',monospace;font-size:10px;">View checksums file</a>
|
|
358
|
+
</p>
|
|
359
|
+
<p style="color:#475569;font-size:10px;margin-top:6px;">
|
|
360
|
+
All releases are built from the <a href="https://github.com/abokenan444/web-agent-bridge" style="color:#0ea5e9;text-decoration:none;">open-source repository</a>.
|
|
361
|
+
Desktop browser source is maintained separately as wab-browser/ (private build pipeline).
|
|
362
|
+
</p>
|
|
363
|
+
</div>
|
|
364
|
+
</div>
|
|
365
|
+
</section>
|
|
366
|
+
|
|
367
|
+
<!-- โโโโโโโ FEATURES โโโโโโโ -->
|
|
368
|
+
<section class="browser-features" id="features">
|
|
369
|
+
<h2 class="section-title">Built for the Intelligent Web</h2>
|
|
370
|
+
<p class="section-subtitle">Every feature designed to protect, empower, and simplify your browsing experience.</p>
|
|
371
|
+
|
|
372
|
+
<div class="features-grid">
|
|
373
|
+
<div class="feature-card">
|
|
374
|
+
<div class="feature-icon">๐ป</div>
|
|
375
|
+
<h3>Ghost Mode</h3>
|
|
376
|
+
<p>Advanced fingerprint protection, automatic user-agent rotation, canvas noise injection, and WebGL spoofing. Browse without leaving digital traces.</p>
|
|
377
|
+
</div>
|
|
378
|
+
<div class="feature-card">
|
|
379
|
+
<div class="feature-icon">๐ก๏ธ</div>
|
|
380
|
+
<h3>Scam Shield</h3>
|
|
381
|
+
<p>Real-time fraud detection analyzing domain patterns, TLD reputation, brand impersonation attempts, and homograph attacks. Every site gets a risk score.</p>
|
|
382
|
+
</div>
|
|
383
|
+
<div class="feature-card">
|
|
384
|
+
<div class="feature-icon">๐</div>
|
|
385
|
+
<h3>Smart Search</h3>
|
|
386
|
+
<p>WAB Search engine with instant results, cached locally for fast recall. Multi-source aggregation delivers comprehensive results under the WAB brand โ no external branding shown.</p>
|
|
387
|
+
</div>
|
|
388
|
+
<div class="feature-card">
|
|
389
|
+
<div class="feature-icon">๐</div>
|
|
390
|
+
<h3>Local-First Storage</h3>
|
|
391
|
+
<p>All your bookmarks, history, and preferences stored exclusively on your device. Search is proxied through WAB servers for privacy โ external engines never see your IP.</p>
|
|
392
|
+
</div>
|
|
393
|
+
<div class="feature-card">
|
|
394
|
+
<div class="feature-icon">๐ค</div>
|
|
395
|
+
<h3>WAB Agent Integration</h3>
|
|
396
|
+
<p>Built-in Web Agent Bridge protocol support. Your agents work natively inside the browser, understanding every page visually and semantically.</p>
|
|
397
|
+
</div>
|
|
398
|
+
<div class="feature-card">
|
|
399
|
+
<div class="feature-icon">๐ซ</div>
|
|
400
|
+
<h3>Ad Blocker</h3>
|
|
401
|
+
<p>Blocks 80+ ad networks, trackers, and popups at the network level. Cosmetic filtering hides leftover ad containers. Zero ads, zero tracking.</p>
|
|
402
|
+
</div>
|
|
403
|
+
<div class="feature-card">
|
|
404
|
+
<div class="feature-icon">โ๏ธ</div>
|
|
405
|
+
<h3>Fairness System</h3>
|
|
406
|
+
<p>Prioritizes small trusted websites over big tech monopolies. Analyzes domain trust, content quality, and independence to rank sites fairly.</p>
|
|
407
|
+
</div>
|
|
408
|
+
<div class="feature-card">
|
|
409
|
+
<div class="feature-icon">๐ฑ</div>
|
|
410
|
+
<h3>Mobile PWA</h3>
|
|
411
|
+
<p>Install directly on your phone as a Progressive Web App. No app store needed. Full browser experience with ad blocking and agent chat on mobile.</p>
|
|
412
|
+
</div>
|
|
413
|
+
<div class="feature-card">
|
|
414
|
+
<div class="feature-icon">โก</div>
|
|
415
|
+
<h3>Lightweight & Fast</h3>
|
|
416
|
+
<p>Minimal footprint, no bloatware, no telemetry. Built on Chromium with only the essentials. Starts in seconds, stays fast forever.</p>
|
|
417
|
+
</div>
|
|
418
|
+
</div>
|
|
419
|
+
</section>
|
|
420
|
+
|
|
421
|
+
<!-- โโโโโโโ HOW IT WORKS โโโโโโโ -->
|
|
422
|
+
<section class="how-section">
|
|
423
|
+
<h2 class="section-title">How It Works</h2>
|
|
424
|
+
<p class="section-subtitle">Three layers of intelligence working together to protect you.</p>
|
|
425
|
+
|
|
426
|
+
<div class="steps">
|
|
427
|
+
<div class="step">
|
|
428
|
+
<div class="step-number">1</div>
|
|
429
|
+
<h3>You Browse</h3>
|
|
430
|
+
<p>Navigate the web normally. Tabs, bookmarks, search โ everything you expect from a browser, refined and simplified.</p>
|
|
431
|
+
</div>
|
|
432
|
+
<div class="step">
|
|
433
|
+
<div class="step-number">2</div>
|
|
434
|
+
<h3>Shield Analyzes</h3>
|
|
435
|
+
<p>Every page is silently analyzed for fraud patterns, suspicious domains, and scam indicators. You see a real-time safety score.</p>
|
|
436
|
+
</div>
|
|
437
|
+
<div class="step">
|
|
438
|
+
<div class="step-number">3</div>
|
|
439
|
+
<h3>Ghost Protects</h3>
|
|
440
|
+
<p>When Ghost Mode is on, your digital fingerprint is randomized. Sites cannot track, identify, or profile you across the web.</p>
|
|
441
|
+
</div>
|
|
442
|
+
</div>
|
|
443
|
+
</section>
|
|
444
|
+
|
|
445
|
+
<!-- โโโโโโโ PRIVACY โโโโโโโ -->
|
|
446
|
+
<section class="privacy-section" id="privacy">
|
|
447
|
+
<div class="privacy-box">
|
|
448
|
+
<h2>๐ Your Data, Your Device</h2>
|
|
449
|
+
<p>WAB Browser was built with a strong privacy philosophy: bookmarks, history, and preferences stay on your device. Search queries are proxied through WAB servers to deliver results without exposing you to third-party tracking.</p>
|
|
450
|
+
<ul class="privacy-list">
|
|
451
|
+
<li>All bookmarks and history stored locally only</li>
|
|
452
|
+
<li>Search queries proxied โ external engines never see your IP</li>
|
|
453
|
+
<li>No telemetry, no analytics, no tracking</li>
|
|
454
|
+
<li>Ghost Mode removes all digital fingerprints</li>
|
|
455
|
+
<li>DNT and GPC headers sent by default</li>
|
|
456
|
+
<li>WAB Account is optional โ for platform features only</li>
|
|
457
|
+
<li>Open protocol, transparent behavior</li>
|
|
458
|
+
</ul>
|
|
459
|
+
</div>
|
|
460
|
+
</section>
|
|
461
|
+
|
|
462
|
+
<!-- โโโโโโโ FOOTER โโโโโโโ -->
|
|
463
|
+
<footer class="browser-footer">
|
|
464
|
+
<p>WAB Browser v1.0.0 ยท Built by <a href="/">WebAgentBridge</a> ยท Free to use</p>
|
|
465
|
+
<p style="margin-top:8px"><a href="/">Home</a> ยท <a href="/privacy">Privacy</a> ยท <a href="/terms">Terms</a> ยท <a href="/docs">Documentation</a></p>
|
|
466
|
+
</footer>
|
|
467
|
+
|
|
468
|
+
<script>
|
|
469
|
+
// Auto-detect OS and highlight the right download button
|
|
470
|
+
const ua = navigator.userAgent.toLowerCase();
|
|
471
|
+
const isMobile = /android|iphone|ipad|ipod|mobile/i.test(ua);
|
|
472
|
+
if (isMobile) {
|
|
473
|
+
document.getElementById('download-mobile').classList.remove('secondary');
|
|
474
|
+
document.getElementById('download-win').classList.add('secondary');
|
|
475
|
+
} else if (ua.includes('mac')) {
|
|
476
|
+
document.getElementById('download-mac').classList.remove('secondary');
|
|
477
|
+
document.getElementById('download-win').classList.add('secondary');
|
|
478
|
+
} else if (ua.includes('linux')) {
|
|
479
|
+
document.getElementById('download-linux').classList.remove('secondary');
|
|
480
|
+
document.getElementById('download-win').classList.add('secondary');
|
|
481
|
+
}
|
|
482
|
+
</script>
|
|
483
|
+
</body>
|
|
484
|
+
</html>
|