Privacy Policy — chrome-use

Chrome extension (id knfcmbamhjmaonkfnjhldjedeobeafmk) · Last updated 2026-07-06

Summary: this extension contains no analytics or trackers and sends nothing to any remote server. It is a local bridge that lets the user's own chrome-use command-line tool, running on the same computer, drive the user's logged-in Chrome. The only data it ever reads leaves the browser exclusively over a local native-messaging channel to that CLI on the same machine — never to us, and never to a third party.

What the extension does

chrome-use pairs Chrome with the locally-installed chrome-use CLI over Chrome native messaging (a local inter-process channel; no network socket, no token). When the user issues an automation command in the CLI, the extension relays Chrome DevTools Protocol operations to the tab the user targets. Everything happens on the user's machine, initiated by the user. The extension makes no outbound network requests of its own.

Data collection & use

CategoryHandled?Detail
Profile account emailRead locally onlyWith the identity permission the extension reads the email of the Google account signed into the current Chrome profile (via chrome.identity.getProfileUserInfo). It is included only in the local handshake sent to the paired chrome-use CLI over native messaging, so the user can tell which profile/account a connection belongs to and avoid automating the wrong account. It is never stored off-device, never transmitted to any remote server, and never shared. See the permission table below.
Browsing historyNoNot collected. Page content is acted on transiently only while the user is running an automation command, and is never stored or sent off-device.
Authentication / cookies / credentialsOnly on the user's explicit command, locallyThe extension never reads or exports cookies on its own. When the user runs a cookie command in their own CLI (e.g. cookies get or cookies set --curl), the extension relays that read/write between the targeted tab and the local chrome-use CLI over the same native-messaging channel as everything else. Cookies are never stored off-device, never transmitted to any remote server, and never shared with a third party. This mirrors the profile-email framing above.
Analytics / telemetryNoThe extension contains no analytics, tracking, or crash-reporting code.
Remote transmissionNoThe extension's only message peer is the local chrome-use CLI via native messaging. It makes no outbound network requests of its own.

Permissions & why they are needed

PermissionPurpose
debuggerAttach the Chrome DevTools Protocol to tabs the automation session owns so the local CLI can read and drive them, only while the user is actively running a command. The user's other tabs are not attached.
tabsCreate, enumerate, and target the correct tab to automate, and route each command to it.
tabGroupsGroup each session's own tabs into a labeled tab group so the user can visually distinguish agent-created tabs from their own.
nativeMessagingThe local transport to the paired chrome-use CLI — the extension's sole communication channel.
identity, identity.emailRead the email of the Google account signed into the current profile (chrome.identity.getProfileUserInfo) purely to label which profile/account a local connection belongs to, so a user with several logged-in Chrome profiles can confirm they are automating the intended account. The email is sent only to the local CLI over native messaging; it is never stored off-device or transmitted to any server. No OAuth token is requested (getAuthToken is not used).
storagePersist a per-profile random identifier and small local pairing/state values in chrome.storage.local.
alarms, idleKeep the MV3 service worker alive during an active automation session and detect idle state so idle sessions can be cleaned up.
webNavigationDetect when a driven tab finishes navigating so automation can wait for the right moment before reading or acting.
notificationsSurface local status/error notices (e.g. connection lost) to the user. No data leaves the device.

Data sharing

None. No data is sold, shared, or transferred to third parties. There are no third parties — the extension talks only to a program the user installed on the same computer.

Contact

Source code, issues, and contact: github.com/leeguooooo/chrome-use