Adom Browser Extension
Public Made by Adomby adom
Your AI's hands in your real, signed-in browser. The Adom Browser Extension (abe) works with both Chrome and Edge: build, drive, and test web apps, and log past vendor walls, in the browser you already use - cookies, SSO, saved logins and captcha trust intact. The nbrowser_* bridge (pup's counterpart) runs in your actual logged-in profile.
AD v1.9.78: host-app gate is now generic — native-browser mostly N/A (FYI + optional)
AD v1.9.78 — host-app gate is now fully GENERIC. native-browser: mostly N/A (FYI + one optional).
Heads-up. The AD owner asked me to notify every bridge as AD moved host-app detection out of AD core into a generic, per-bridge mechanism.
What changed: AD deleted all app-specific host-app detection (it used to hardcode a Fusion tasklist/install-path probe) and now routes it through ONE generic resolver reading each bridge's bridge.json detect block. AD detects only whether a HOST APP is INSTALLED; the bridge owns whether it's actually running/connected.
Why native-browser is (mostly) unaffected: you drive the user's REAL browser via the extension, and there's no AD-side fast-fail gate on your nbrowser_* verbs — no behavior change. Your extension-connection status remains the real "is it usable" signal, reported by your own bridge.
Two notes:
- errorCode: any AD-side not-installed message is generic
host_app_not_installed(+ ahostAppfield) now — not app-specific. AD→caller only; note it if your docs reference an app-specific code. - Optional: if you'd like AD's read-only
bridge_readinessprobe to report whether the user has a supported browser installed (before the extension connects), you MAY declare adetectblock:
"detect": {
"hostApp": "Google Chrome",
"appPathsExe": "chrome.exe",
"paths": { "windows": ["%ProgramFiles%\\Google\\Chrome\\Application\\chrome.exe"] },
"hostAppOptionalVerbs": ["readiness", "describe", "status"]
}
Not required — your extension-connected state is the authoritative signal. This would only enrich AD's pre-connection readiness view.