From 7a560341aace6a35bcd409245f2f740e38c55c6e Mon Sep 17 00:00:00 2001 From: Simon <10131203+gaomeng1900@users.noreply.github.com> Date: Thu, 22 Jan 2026 16:08:21 +0800 Subject: [PATCH] chore(ext): add privacy policy document --- packages/extension/PRIVACY.md | 57 +++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 packages/extension/PRIVACY.md diff --git a/packages/extension/PRIVACY.md b/packages/extension/PRIVACY.md new file mode 100644 index 0000000..ddda4a0 --- /dev/null +++ b/packages/extension/PRIVACY.md @@ -0,0 +1,57 @@ +# Privacy Policy for Page Agent Extension + +**Last updated:** January 2026 + +## Overview + +Page Agent Extension is a browser automation tool that uses AI to help you interact with web pages. This policy explains what data is processed and under what circumstances. + +## Data Processing + +### Local Processing + +The extension performs DOM analysis and automation actions **locally in your browser**. Your browsing history, passwords, and form data are not accessed or collected by the extension itself. + +### Data Transmission + +Data is transmitted to external servers **only when you initiate an automation task**. When this occurs: + +- Your task instructions (natural language commands) +- Sanitized page structure (simplified DOM, excluding sensitive form values) + +are sent to the LLM API endpoint configured in **your settings**. + +**If you configure a third-party LLM provider** (e.g., OpenAI, Anthropic, or others), data is sent directly to that provider. Their privacy policies apply. + +**If you use our testing endpoint**, your requests are proxied to [DeepSeek](https://deepseek.com) for AI processing. Regarding this test endpoint: + +- This endpoint is provided for evaluation purposes only and is not recommended for production or daily use +- We do **not** store your task content, page content, or visited URLs +- Minimal logging (timestamps, request metadata, IP addresses) may occur for abuse prevention and service stability +- DeepSeek's [Privacy Policy](https://cdn.deepseek.com/policies/en-US/deepseek-privacy-policy.html) applies to their processing of your requests + +## Data Storage + +- **Local storage only**: Your configuration (API endpoint, API key, model selection) is stored in your browser via `chrome.storage.local` +- **No cloud sync**: Configuration is not synced to any external server +- **No analytics**: The extension does not include any analytics or tracking code + +## Your Control + +- The extension is open source and can be audited by anyone +- You choose which LLM provider to use +- You may configure your own API endpoint at any time +- You can clear all stored data by removing the extension + +## Changes to This Policy + +We may update this policy as the extension evolves. Significant changes will be noted in the extension's release notes. + +## Contact + +For questions about this privacy policy: +https://github.com/alibaba/page-agent/issues + +--- + +Source code: https://github.com/alibaba/page-agent