Work inside "${id}", the user's OWN signed-in browser, through the extension installed in it — open pages, read them, click and type, on the sites they have allowed, while they watch. Use for anything that needs THEIR session (work SSO, a passkey, a bank, a site that blocks datacentre traffic) rather than the sandbox's own browser, and whenever the user says "my browser", "the tab I have open", or names a site they are already signed into.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add intentic/intentic --skill chrome --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Chrome?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/intentic-chrome)More formats (shields.io, HTML) on the badges page.
---
name: chrome
description: Work inside "${id}", the user's OWN signed-in browser, through the extension installed in it — open pages, read them, click and type, on the sites they have allowed, while they watch. Use for anything that needs THEIR session (work SSO, a passkey, a bank, a site that blocks datacentre traffic) rather than the sandbox's own browser, and whenever the user says "my browser", "the tab I have open", or names a site they are already signed into.
---
${tools}
## Which browser to reach for
This sandbox usually has two, and picking the wrong one wastes a turn:
| Want | Use |
| --- | --- |
| A public page, no sign-in | `webq` or an ordinary fetch. Cheapest, and borrows nobody's session. |
| A site the sandbox has its own account on | The sandbox's own browser (`mcp__<account>__browser_*`). It works while nobody is at the keyboard. |
| A site only THEY are signed into | **This.** Their passkey, their SSO, their second factor, their fingerprint. |
| A long job on a site they are signed into | This, then `connect_site` once, then the sandbox's browser from then on. |
## Chromium specifics worth knowing
- **A pinned tab, a background tab and the tab in front are all the same to these tools.** Pass a `tab` id from
`tabs` to work somewhere that is not in front — the person keeps using the tab they are looking at.
- **Profiles are separate browsers.** If they run a work profile and a personal one, only the profile with the
extension in it is connected, and a site signed in on the other profile is not signed in here.
- **A page you cannot see may still be loading.** `snapshot` says when the document is still loading; prefer
`wait_for` over taking another snapshot straight away.
- **Single-page apps re-render constantly.** A ref taken before a click that re-rendered the list is stale, and
will be refused. Snapshot, act, read what came back, snapshot again.
- **`chrome://` pages, the Web Store, and other extensions' pages cannot be touched by any extension.** That is
the browser's rule, not this connection's, and there is no permission that changes it.
- **Downloads land in their Downloads folder, on their computer** — not in the sandbox. If a file is needed
here, say so: a connected computer (the `host` capability) can read it, or they can drag it into the app.
## Etiquette that keeps this connection installed
It is the same browser their bank is open in. The habits that make this feel safe rather than alarming:
1. **Say what you are about to do in their browser before you do it**, when it is anything more than reading.
They will see the banner anyway; being told first is the difference between a colleague and a poltergeist.
2. **Work in one tab, and put it back.** Opening eleven tabs and leaving them is somebody else's mess to clear.
3. **Never type a credential.** If a page wants a password, a code or a card number, stop and ask them to do
that part. You cannot read a password field, and you should not want to.
4. **If something looks wrong — an unexpected login page, a payment screen you did not expect — stop and say
so.** A page that is not what you expected is exactly when to stop, not to click on.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!