• bitcoinBitcoin(BTC)$62,184.000.92%
  • ethereumEthereum(ETH)$1,739.402.63%
  • tetherTether(USDT)$1.000.01%
  • binancecoinBNB(BNB)$567.651.24%
  • usd-coinUSDC(USDC)$1.000.00%
  • rippleXRP(XRP)$1.122.88%
  • solanaSolana(SOL)$81.631.16%
  • tronTRON(TRX)$0.3203570.80%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.040.53%
  • HyperliquidHyperliquid(HYPE)$70.006.29%
  • dogecoinDogecoin(DOGE)$0.0768603.56%
  • RainRain(RAIN)$0.015485-0.15%
  • USDSUSDS(USDS)$1.00-0.01%
  • leo-tokenLEO Token(LEO)$9.140.20%
  • zcashZcash(ZEC)$456.023.35%
  • stellarStellar(XLM)$0.2017191.03%
  • whitebitWhiteBIT Coin(WBT)$56.251.01%
  • cardanoCardano(ADA)$0.17597710.63%
  • moneroMonero(XMR)$326.393.64%
  • chainlinkChainlink(LINK)$7.881.59%
  • CantonCanton(CC)$0.1386850.20%
  • daiDai(DAI)$1.000.00%
  • USD1USD1(USD1)$1.000.03%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.692.64%
  • bitcoin-cashBitcoin Cash(BCH)$227.772.70%
  • Ethena USDeEthena USDe(USDE)$1.00-0.01%
  • litecoinLitecoin(LTC)$43.931.12%
  • hedera-hashgraphHedera(HBAR)$0.071968-2.25%
  • Circle USYCCircle USYC(USYC)$1.130.01%
  • suiSui(SUI)$0.762.54%
  • Global DollarGlobal Dollar(USDG)$1.00-0.05%
  • avalanche-2Avalanche(AVAX)$6.861.60%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.02%
  • crypto-com-chainCronos(CRO)$0.0591345.08%
  • nearNEAR Protocol(NEAR)$2.013.76%
  • shiba-inuShiba Inu(SHIB)$0.0000041.61%
  • tether-goldTether Gold(XAUT)$4,160.031.52%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.140.09%
  • BittensorBittensor(TAO)$214.951.32%
  • uniswapUniswap(UNI)$3.270.23%
  • MemeCoreMemeCore(M)$1.481.32%
  • pax-goldPAX Gold(PAXG)$4,164.601.55%
  • LABLAB(LAB)$6.03-38.40%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.056676-2.67%
  • AsterAster(ASTER)$0.652.28%
  • okbOKB(OKB)$80.350.17%
  • OndoOndo(ONDO)$0.3337690.61%
  • Ripple USDRipple USD(RLUSD)$1.000.00%
  • worldcoin-wldWorldcoin(WLD)$0.43482411.50%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

Meet WebBrain: An Open-Source, Local-First AI Browser Agent That Reads Pages and Automates Tasks in Chrome and Firefox

July 3, 2026
in AI & Technology
Reading Time: 30 mins read
A A
Meet WebBrain: An Open-Source, Local-First AI Browser Agent That Reads Pages and Automates Tasks in Chrome and Firefox
ShareShareShareShareShare

WebBrain is a free, open-source browser agent for Chrome and Firefox. It reads pages, extracts data, and automates multi-step tasks. Unlike most browser AI plugins, it can also run entirely on a local model.

It is built by Emre Sokullu and licensed under MIT. The full source lives on GitHub. 

Run the agent against a local model, and no page data leaves your machine. Connect a cloud API when you want more capability.

What is WebBrain?

WebBrain lives in your browser’s side panel. In Chrome it uses Manifest V3 and the sidePanel API. In Firefox it uses Manifest V2 and sidebar_action. Each tab keeps its own conversation history.

The extension operates inside your existing authenticated session. It sees your logged-in accounts exactly as you do. It stores no data externally and adds no telemetry or accounts.

The plugin ships in English, Español, Français, Türkçe, and 中文. It auto-detects your browser language on first launch.

Ask Mode, Act Mode, and How Actions Actually Fire

WebBrain has two modes: Ask mode is read-only and cannot change the page. Act mode can click, type, scroll, navigate, and run workflows.

Ask mode reads pages through ordinary content scripts. Act mode is different. It drives the page through the Chrome DevTools Protocol via the chrome.debugger API. That produces trusted input events that modern sites actually honor. It also reaches cross-origin iframes and shadow DOM that content scripts cannot see.

That power is scoped deliberately. WebBrain attaches the debugger only when an action needs it, per tab. Chrome surfaces its standard ‘WebBrain started debugging this browser’ banner while attached. Firefox has no CDP equivalent, so its Act mode is meaningfully weaker.

Temperatures are fixed for predictability. Act mode uses temperature 0.15. Ask mode uses 0.3. Dedicated vision screenshot descriptions use 0.

The Security Model

Browser agents run on an adversarial surface. Web pages can hide prompt injections that hijack an agent’s behavior. WebBrain’s design addresses this directly.

The agent starts in read-only Ask mode. It asks before consequential actions. You can disable those prompts in the Permissions settings. They are on by default.

There is also a UI-first rule for mutations. For anything that creates, sends, submits, or buys, WebBrain uses the visible UI. It refuses to call REST or GraphQL endpoints directly for mutations. A per-conversation /allow-api override exists when the UI genuinely fails.

Reading is treated separately. Fetching a README or comparing prices uses background HTTP through the fetch_url and research_url tools. Reading changes nothing remotely, so the strict rules do not apply.

Use Cases, With Concrete Examples

  • Data extraction is the obvious one: Open a catalog and ask: ‘Extract all product names and prices from this page.’ The agent reads the structure and returns rows. It also works with PDFs.
  • Research summaries are another: Ask ‘Summarize this article,’ then follow up with a specific question. WebBrain detects paywalls honestly and does not try to bypass them. It also dismisses common cookie-consent banners before reading.
  • Form filling suits repetitive signups: An optional Profile auto-fill stores a short bio in local plaintext. That text is sent to your configured LLM to complete low-stakes forms. Keep important passwords out of it.
  • Automation spans multiple steps: Try ‘Navigate to github.com and find trending repositories.’ In Act mode, the agent chains navigation, reads, and clicks.

Keeping Token Costs Down

Cloud tokens add up on long sessions. WebBrain bounds the cost in three ways.

  • Screenshots are resized and iteratively JPEG-compressed before they leave your machine. That keeps image tokens small. 
  • Conversation history and tool outputs are trimmed oldest-first as the context window fills. 
  • You can also pair a cheap text model for planning with a separate vision model for screenshots.

How It Compares

WebBrain sits between browser AI plugins and full agent frameworks. Here is the plugin comparison, drawn from the project’s own documentation.

Feature WebBrain Claude in Chrome
Open source MIT License Proprietary
Price Free forever Requires Claude Pro ($20/mo)
Local LLM support llama.cpp, Ollama No — Claude only
Multi-provider All OpenAI-compatible endpoints Claude only
Chrome Yes (MV3) Yes
Firefox Yes (MV2) No
Side panel UI Yes Yes
Ask / Act modes Yes Similar
Fully offline Yes (with local LLM) No — cloud required
Self-hostable Yes No

Frameworks like OpenClaw or Browser-Use are a different category. Those are developer SDKs for headless pipelines. WebBrain is an end-user extension you drive from a chat panel. You can use both.

Running It: Providers and Setup

WebBrain supports local and cloud models through one interface. Local options include llama.cpp, Ollama, LM Studio, Jan, vLLM, and SGLang. Cloud options include OpenAI, Anthropic Claude, Gemini, Mistral, DeepSeek, and xAI Grok. It also supports Groq, MiniMax, Alibaba Cloud (Qwen), Nvidia NIM, and OpenRouter.

A built-in managed option, WebBrain Cloud, needs no local setup. It costs $5 per month per device profile under a fair-use policy. For local use, llama.cpp needs no API key.

Starting a local server takes one command:

# llama.cpp — load at least a 16k-token context window
llama-server -m your-model.gguf -c 16384 --port 8080

# Ollama (OpenAI-compatible) — set the extension-origin env var
OLLAMA_ORIGINS="*" ollama serve
# then set the base URL to http://localhost:11434/v1 in settings

Point WebBrain at the endpoint in settings. For a cross-machine vLLM server, enable CORS with –allowed-origins ‘[“*”]’.

The recommended model is Qwen 3.6 35B (Qwen3.6-35B-A3B). It beat Gemma 4 on the project’s screenshot benchmark. An RTX 5090 is ideal; an RTX 4090 works with INT4 AutoRound quantization.

Each provider is a class that extends BaseLLMProvider. It normalizes to one response shape:

{ content: string, toolCalls: Array|null, usage: Object|null }

Key Takeaways

  • WebBrain is a free, MIT-licensed AI browser agent for Chrome and Firefox, built by Emre Sokullu.
  • It runs on local models (llama.cpp, Ollama; Qwen 3.6 35B recommended) or any cloud API — no page data leaves your machine when local.
  • Ask mode reads pages read-only; Act mode clicks and types via the Chrome DevTools Protocol for trusted input events.
  • Security-first by design: starts read-only, approves consequential actions, and uses the UI instead of direct API calls for mutations.
  • Free forever self-hosted, or $5/month per device profile for the managed WebBrain Cloud under fair use.

Interactive Explainer with Demo

Demo-1

Demo-2

WebBrain is available on the Chrome Web Store, Firefox Add-ons, and GitHub. Product details at webbrain website.


Note:Thanks to the Webbrain team for the thought leadership/ Resources for this article. Webbrain team has supported this content/article for promotion.

YOU MAY ALSO LIKE

How To Watch Summer Games Done Quick 2026

Trunk Tools’ stack cut document review from 60 days to 10 by ditching general-purpose models


Credit: Source link

ShareTweetSendSharePin

Related Posts

How To Watch Summer Games Done Quick 2026
AI & Technology

How To Watch Summer Games Done Quick 2026

July 3, 2026
Trunk Tools’ stack cut document review from 60 days to 10 by ditching general-purpose models
AI & Technology

Trunk Tools’ stack cut document review from 60 days to 10 by ditching general-purpose models

July 3, 2026
Tesla’s Model Y L Finally Comes To The US With Six Seats And A ,000 Price Tag
AI & Technology

Tesla’s Model Y L Finally Comes To The US With Six Seats And A $62,000 Price Tag

July 3, 2026
Interfaze Ships diffusion-gemma-asr-small, an Open-Source Diffusion ASR Model Transcribing Six Languages via DiffusionGemma’s Parallel Denoising Decoder
AI & Technology

Interfaze Ships diffusion-gemma-asr-small, an Open-Source Diffusion ASR Model Transcribing Six Languages via DiffusionGemma’s Parallel Denoising Decoder

July 3, 2026
Next Post
Trump shows reporters the Lincoln Memorial Reflecting Pool being filled with water

Trump shows reporters the Lincoln Memorial Reflecting Pool being filled with water

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
NVIDIA Releases Nemotron-Labs-TwoTower: an Open-Weight Diffusion Language Model Built on a Frozen Autoregressive Nemotron-3-Nano-30B-A3B Backbone

NVIDIA Releases Nemotron-Labs-TwoTower: an Open-Weight Diffusion Language Model Built on a Frozen Autoregressive Nemotron-3-Nano-30B-A3B Backbone

July 1, 2026
Ezcorp: Still Cheap Enough For The Growth

Ezcorp: Still Cheap Enough For The Growth

June 27, 2026
SpaceX Has Path to AI in Space, Says Early Investor David George

SpaceX Has Path to AI in Space, Says Early Investor David George

June 28, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!