human-browser 4.0.0 → 4.0.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/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  > **No Mac Mini. No local machine. Your agent runs it anywhere.**
4
4
  > Residential IPs from 10+ countries. Bypasses Cloudflare, DataDome, PerimeterX.
5
5
  >
6
- > 🌐 **Product page:** https://humanbrowser.dev
6
+ > 🌐 **Product page:** https://humanbrowser.cloud
7
7
  > 💬 **Support:** https://t.me/virixlabs
8
8
 
9
9
  ---
@@ -31,7 +31,7 @@ Human Browser solves this by combining:
31
31
  ```js
32
32
  const { launchHuman } = require('./scripts/browser-human');
33
33
 
34
- // 🚀 Zero config — auto-fetches trial credentials from humanbrowser.dev
34
+ // 🚀 Zero config — auto-fetches trial credentials from humanbrowser.cloud
35
35
  const { browser, page, humanType, humanClick, humanScroll, sleep } = await launchHuman();
36
36
  // Output: 🎉 Human Browser trial activated! (~100MB Romania residential IP)
37
37
 
@@ -49,7 +49,7 @@ await humanClick(page, 760, 400);
49
49
  await browser.close();
50
50
  ```
51
51
 
52
- > **Trial exhausted?** Get a paid plan at https://humanbrowser.dev, then set `PROXY_USER` / `PROXY_PASS` in your `.env`.
52
+ > **Trial exhausted?** Get a paid plan at https://humanbrowser.cloud, then set `PROXY_USER` / `PROXY_PASS` in your `.env`.
53
53
 
54
54
  ---
55
55
 
@@ -85,7 +85,7 @@ clawhub install al1enjesus/human-browser
85
85
  ## Proxy Providers
86
86
 
87
87
  ### Option 1: Human Browser Managed (recommended)
88
- Buy directly at **humanbrowser.dev** — we handle everything, from $13.99/mo.
88
+ Buy directly at **humanbrowser.cloud** — we handle everything, from $13.99/mo.
89
89
  Supports crypto (USDT/ETH/BTC/SOL) and card. AI agents can auto-purchase.
90
90
 
91
91
  ### Option 2: Bring Your Own Proxy
@@ -125,5 +125,5 @@ PROXY_PASS=your-password
125
125
 
126
126
  ---
127
127
 
128
- → **Product page + pricing:** https://humanbrowser.dev
128
+ → **Product page + pricing:** https://humanbrowser.cloud
129
129
  → **Support & questions:** https://t.me/virixlabs
package/SKILL.md CHANGED
@@ -610,7 +610,7 @@ curl -sx "http://USER:PASS@ro.decodo.com:13001" -X POST https://httpbin.org/post
610
610
 
611
611
  ## Plans & credentials
612
612
 
613
- 🌐 **https://humanbrowser.dev** — get credentials, manage subscription
613
+ 🌐 **https://humanbrowser.cloud** — get credentials, manage subscription
614
614
 
615
615
  | Plan | Price | Countries | Bandwidth |
616
616
  |------|-------|-----------|-----------|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "human-browser",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Stealth browser for AI agents. Bypasses Cloudflare, DataDome, PerimeterX. Residential IPs from 10+ countries. iPhone 15 Pro fingerprint. Drop-in Playwright replacement — launchHuman() just works.",
5
5
  "keywords": [
6
6
  "browser-automation",
@@ -31,7 +31,7 @@
31
31
  ],
32
32
  "author": "al1enjesus",
33
33
  "license": "MIT",
34
- "homepage": "https://humanbrowser.dev",
34
+ "homepage": "https://humanbrowser.cloud",
35
35
  "repository": {
36
36
  "type": "git",
37
37
  "url": "https://github.com/al1enjesus/human-browser"
@@ -52,4 +52,4 @@
52
52
  "dependencies": {
53
53
  "dotenv": "^17.3.1"
54
54
  }
55
- }
55
+ }
@@ -5,7 +5,7 @@
5
5
  * Appears as iPhone 15 Pro or Desktop Chrome to every website.
6
6
  * Bypasses Cloudflare, DataDome, PerimeterX out of the box.
7
7
  *
8
- * Get credentials: https://humanbrowser.dev
8
+ * Get credentials: https://humanbrowser.cloud
9
9
  * Support: https://t.me/virixlabs
10
10
  *
11
11
  * Usage:
@@ -200,7 +200,7 @@ function makeProxy(sessionId = null, country = null) {
200
200
  // ─── TRIAL CREDENTIALS ───────────────────────────────────────────────────────
201
201
 
202
202
  /**
203
- * Get free trial credentials from humanbrowser.dev
203
+ * Get free trial credentials from humanbrowser.cloud
204
204
  * Sets HB_PROXY_USER, HB_PROXY_PASS, HB_PROXY_SESSION, HB_PROXY_PROVIDER
205
205
  * No signup needed — Romania residential proxy
206
206
  *
@@ -216,7 +216,7 @@ async function getTrial() {
216
216
  try {
217
217
  const https = require('https');
218
218
  const data = await new Promise((resolve, reject) => {
219
- const req = https.get('https://humanbrowser.dev/api/trial', res => {
219
+ const req = https.get('https://humanbrowser.cloud/api/trial', res => {
220
220
  let body = '';
221
221
  res.on('data', d => body += d);
222
222
  res.on('end', () => { try { resolve(JSON.parse(body)); } catch (e) { reject(e); } });
@@ -239,7 +239,7 @@ async function getTrial() {
239
239
  if (!process.env.HB_PROXY_COUNTRY) process.env.HB_PROXY_COUNTRY = country;
240
240
 
241
241
  console.log(`🎉 Human Browser trial activated! (~100MB Romania residential IP)`);
242
- console.log(` Upgrade at: https://humanbrowser.dev\n`);
242
+ console.log(` Upgrade at: https://humanbrowser.cloud\n`);
243
243
  return { ok: true, provider, country, session };
244
244
  }
245
245
 
@@ -247,9 +247,9 @@ async function getTrial() {
247
247
  } catch (err) {
248
248
  const e = new Error(err.message);
249
249
  e.code = 'TRIAL_UNAVAILABLE';
250
- e.cta_url = 'https://humanbrowser.dev';
250
+ e.cta_url = 'https://humanbrowser.cloud';
251
251
  console.warn('[human-browser] Trial fetch failed:', err.message);
252
- console.warn(' → Get credentials at: https://humanbrowser.dev');
252
+ console.warn(' → Get credentials at: https://humanbrowser.cloud');
253
253
  throw e;
254
254
  }
255
255
  }
@@ -467,7 +467,7 @@ async function launchHuman(opts = {}) {
467
467
  await getTrial();
468
468
  } catch (e) {
469
469
  console.warn('⚠️ Could not fetch trial credentials:', e.message);
470
- console.warn(' Get credentials at: https://humanbrowser.dev');
470
+ console.warn(' Get credentials at: https://humanbrowser.cloud');
471
471
  }
472
472
  }
473
473