What data does the browser extension collect?

Once installed, the extension sits in the background of your employees’ browsers and collects the following information:

  • Browser name

  • Browser version

  • Device OS

  • Tibo browser extension version

When employees try to send a prompt to an AI app, the extension monitor (not collect):

  • The URL of the AI app

  • The prompt content

Using the prompt content, Tibo can then determine if any sensitive data is in the prompt. The whole detection is done locally in the browser, not at server-side.

Related help articles

  • How does Tibo determine if a prompt is sensitive?

  • How does Tibo securely process the user prompt?

If the extension observes any sensitive data in a user prompt, it also collects the prompt. The data the extension collects in this case is:

  • The original prompt

  • The revised prompt (if redacted)

Finally, the extension collects anonymized performance and error tracking data.

Here are some examples of data the extension collects.

Browser data:

{
    "browserId":"d732c61e-35ea-3bdf-27cd-d37a3fadf6f9",
    "checkinDetails":{
        "browserName":"CHROME",
        "browserVersion":"100.0.4896.75",
        "operatingSystemName":"MACOS",
        "extensionVersion":"1.4.16"
    }
}

Login data:

{
    "browserId":"d732c61e-35ea-3bdf-27cd-d37a3fadf6f9",
    "platform":"TRELLO",
    "username":"[email protected]",
    "weakPassword":true,
    "passwordChanged":false,
    "passwordManuallyTyped":false,
    "trackedAccounts":[
        {
            "username":"[email protected]",
            "platform":"GITHUB",
            "lastLogin":"2022-03-17T14:25:55.000Z",
            "samePassword":false
        },
        {
            "username":"[email protected]",
            "platform":"GOOGLE_WORKSPACE",
            "lastLogin":"2022-04-04T07:49:00.000Z",
            "samePassword":true
        },
    ]
}

Last updated