Security

Security and data handling.

What the extension can reach, what stays on your machine, what we store, and what we have not built. Each item can be checked against the published extension package.

How to read this page

Most of what follows can be checked without taking our word for it. The extension’s permissions are listed on its Chrome Web Store page and inside the downloaded package; the database columns are described here in the same words the schema uses. Where we have no evidence for something, this page says so instead of implying it.

What the extension can access

A Chrome extension can only do what its manifest asks for, and the manifest ships inside the package. Guard4AI asks for one permission.

Every claim in this section is checkable from the Chrome Web Store listing. The permissions a Chrome extension requests are shown on its store page before you install it, and the manifest itself is inside the downloaded package. You do not have to take any of it on trust.

One permission: storage

It lets the extension keep your settings and your masking table on your own machine. That is the entire list. Guard4AI does not request tabs, history, cookies, bookmarks, downloads, webRequest, scripting or nativeMessaging, and it declares no optional permissions it could ask for later.

Twenty-eight AI tools, named one at a time

The part that reads your message is a content script, and it can only run where the manifest lists it. Guard4AI lists twenty-eight AI tools explicitly: ChatGPT, Claude, Gemini, Copilot, Perplexity, Poe, Mistral, DeepSeek, Grok, Meta AI and the rest, plus our own Supabase project for the licence check.

It does not ask for <all_urls>, and it does not ask for a wildcard. On your bank, your email, your practice management system or your intranet, Guard4AI is not running at all. Not idle, not watching: the browser never loads it there.

No remote code

The extension’s content security policy is script-src 'self'. Nothing it runs is fetched from a server at runtime, so there is no path by which the behaviour of an installed copy can be changed without a new version passing Chrome Web Store review.

That includes the heavy parts. The PDF reader, the Word reader and the text recognition engine are all shipped inside the package rather than downloaded, which is most of its size. The one exception in the policy is wasm-unsafe-eval, which the text recognition engine needs in order to run its WebAssembly at all.

What a web page can and cannot reach

The manifest sets no externally_connectable, so no page on the web, including ours, can use Chrome’s extension messaging to reach Guard4AI or read anything out of it.

One qualification, because the stronger claim would be inaccurate. On the supported sites the content script runs inside the page, and it does listen for browser message events. It listens for exactly one thing: the handshake from the file-reading frame the extension creates itself. It checks that the sender is that frame and ignores every other message. A page can therefore send a message; it cannot get Guard4AI to act on one.

What stays on your device

All of it lives in the browser’s own extension storage, which is readable only by Guard4AI and only on that machine. Nothing here is synced to us or to your admin.

Removing the extension removes all of it. Clear, in the popup, deletes the masking table and the counters without removing the extension.

What is transmitted

Written as requests rather than as topics. A workplace seat can make six, and no others:

  1. Redeeming the invite code, once. Carries the code and the first and last name typed at activation.
  2. Recording a catch. Carries the seat id, the category, and which AI tool it happened on. One request per category.
  3. Recording a tool as used, at most once per tool per day. Carries the seat id and the tool’s name.
  4. Recording an attachment. Carries the file’s broad type and one of three outcomes.
  5. Confirming the seat is still valid, roughly every fifteen minutes while an AI tool is open. Carries the seat id, and brings back the scanning policy.
  6. Handing the seat back on deactivation. Carries the seat id.

A personal licence makes two: it confirms the key is still paid, and it releases the device on deactivation. Both carry a random token and nothing else.

Every request goes over HTTPS. The code that builds the catch report checks each field against a fixed list and refuses to send anything at all if a field it does not recognise appears, which is a structural guard rather than a promise: adding a fourth field breaks the request instead of leaking it.

The same thing as a diagram

Coverage is the supported AI websites listed above, open in your browser. Guard4AI is not in Word, Outlook or any desktop application, and it does not see a file you upload anywhere other than those sites.

Detection is pattern matching and it is not perfect. Guard4AI is a safeguard against accidental over-sharing, not a guarantee that nothing sensitive can ever reach an AI tool.

What the backend stores

Six tables carry customer data. None of them has a column that could hold your message text.

Separately we hold your account email and a billing record if you have bought something, and any enquiry you have sent through the contact form.

Retention, stated accurately

There is no scheduled deletion. Nothing on our side purges old rows on a timer, and no retention period is currently defined.

What that means in practice is that a row persists until something deletes it, and three things do:

Two points on what is being retained. The rows are tallies rather than content, so what persists is that a phone number was caught on ChatGPT on a Tuesday, not the number itself. The contact form is the only place we hold free text, and its rate limit stores a one-way hash of your IP address rather than the address.

Who can see what

Hosting and encryption

The website and the API routes run on Vercel. The database is Supabase, hosted in Sydney. Every request between your browser and either of them is HTTPS.

Both platforms encrypt data at rest as part of their service. That is their control, documented by them. Guard4AI has not independently audited it and does not hold a certification of its own.

Third parties

None of them receive your message text, because we never have it.

What we have not built yet

Four things a security review commonly asks for, and where each one stands.

  • Independent testing: no third-party penetration test has been completed.
  • Certification: no SOC 2 or ISO 27001 certification is held.
  • Managed deployment: no MSI, configuration profile or device management integration is provided.
  • Single sign-on: not supported. Accounts use email and password.

If any of these is a requirement, Guard4AI does not meet it today.

Deployment

Each browser installs Guard4AI from the Chrome Web Store and activates it with a code. There is no MSI, no configuration profile, no single sign-on and no admin console beyond the dashboard. That suits a small firm with no desktop management in place, and it is a limitation for a large one that has it.

Reporting a security problem

Email hello@guard4ai.com with what you found and how to reproduce it. We will acknowledge it within two business days and tell you what we intend to do. No bug bounty programme is offered.

Last updated 12 September 2026 · Guard4AI · Built in Australia