human-browser 3.2.1 → 3.2.2
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 +1 -1
- package/SKILL.md +1 -1
- package/package.json +1 -1
- package/scripts/browser-human.js +2 -2
package/README.md
CHANGED
package/SKILL.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "human-browser",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.2",
|
|
4
4
|
"description": "Stealth browser with residential proxies from 10+ countries for AI agents. Bypasses Cloudflare, DataDome, PerimeterX. iPhone 15 Pro fingerprint.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"browser-automation",
|
package/scripts/browser-human.js
CHANGED
|
@@ -40,8 +40,8 @@ function buildProxy(country = 'ro') {
|
|
|
40
40
|
// Proxy config — use env vars or defaults
|
|
41
41
|
const PROXY_HOST = process.env.PROXY_HOST || 'brd.superproxy.io';
|
|
42
42
|
const PROXY_PORT = process.env.PROXY_PORT || '22225';
|
|
43
|
-
const PROXY_USER = process.env.PROXY_USER ||
|
|
44
|
-
const PROXY_PASS = process.env.PROXY_PASS || '
|
|
43
|
+
const PROXY_USER = process.env.PROXY_USER || '';
|
|
44
|
+
const PROXY_PASS = process.env.PROXY_PASS || '';
|
|
45
45
|
|
|
46
46
|
// Also support legacy env var names for backward compatibility
|
|
47
47
|
const server = process.env.PROXY_SERVER || `http://${PROXY_HOST}:${PROXY_PORT}`;
|