ChromeBoost

Privacy Policy

Last updated 28 August 2026

The short version. ChromeBoost has no servers. It has no accounts, no telemetry, and no analytics inside the extension. The extension talks to exactly one thing: an MCP server running on your own computer, over a WebSocket bound to localhost. Nothing about your browsing is sent to us, because there is no "us" to send it to.

The one thing you should understand before installing is in section 3: page content that you ask ChromeBoost to read is handed to whichever AI coding agent you are running, and that agent will normally send it onward to its own provider.

1. Who this covers

ChromeBoost is a free, MIT licensed, open source project maintained by an individual developer. This policy covers two things:

The full source for both is public. If any statement here does not match the code, the code is the truth and the discrepancy is a bug worth reporting.

2. What the extension collects

Nothing is collected by the developer. ChromeBoost operates no backend, no logging service, no crash reporter, and no analytics. There is no network destination that data could be collected at.

The extension opens a single outbound connection, and it is a local one:

DestinationWhat travels over it
ws://localhost:PORT The MCP server on your own machine. Commands from your AI agent travel in, and the results of those commands travel back. This connection never leaves your computer.

The extension stores a small amount of state locally using chrome.storage.local. It stays in your browser profile and is never transmitted:

No browsing history, no bookmarks, no form data, and no credentials are stored by the extension.

3. Where page content actually goes

Read this part. ChromeBoost is the hands, not the brain. When you ask your agent to read a page, fill a form, or find a button, the relevant page content is passed to the AI coding agent running on your machine, for example Claude Code, Codex, or Gemini CLI. Those tools send what they receive to their own provider's API in order to think about it.

So while ChromeBoost itself transmits nothing to anyone, the practical result of using it is that pages you point it at can reach Anthropic, OpenAI, or Google, governed by their privacy policies and your agreement with them, not this one. Treat it the same way you would treat pasting a page into a chat window.

Two consequences worth being deliberate about:

4. Permissions, and why each one exists

Chrome shows a blunt warning at install time. Here is the specific reason for each permission the extension requests:

PermissionWhy it is needed
debuggerThe core of the product. Clicks, drags, and keystrokes are dispatched through the Chrome DevTools Protocol so they arrive as real, trusted input events. Ordinary synthetic events are silently ignored by many modern web apps.
<all_urls>You decide which sites to automate, so the extension cannot know the list in advance. It acts only on the tab you direct it to.
tabsListing, opening, switching, and closing tabs on request.
activeTabReading and screenshotting the tab currently being worked on.
scriptingInjecting the content script that performs DOM work such as hit testing, form filling, and shadow DOM traversal.
offscreenHolding the WebSocket connection open. An MV3 service worker is shut down when idle, which would drop the connection.
storageRemembering the status panel position and which local sessions are connected.
windowsFocusing and arranging browser windows during multi tab work.
downloadsSaving a file when you explicitly ask for a download, and reading back files the agent was told to fetch.

5. What is never done

6. The website

The site is a static page hosted on Vercel. Two things about it differ from the extension, and it would be misleading not to say so:

7. Children

ChromeBoost is a developer tool and is not directed at children under 13. No age information is collected, because no personal information is collected.

8. Changes to this policy

If this policy changes in a way that affects how data is handled, the date at the top will change and the revision will be visible in the public commit history of this file. Because the project has no accounts, there is no mailing list to notify, so the git history is the record.

9. Contact

Questions, corrections, or a privacy concern: open an issue at github.com/lordamdal/chromeboost/issues. For anything you would rather not discuss in public, including suspected security issues, see SECURITY.md.