-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
62 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,62 @@ | ||
Privacy Policy for Chrome Tab Manager | ||
|
||
Last updated: 2024-10-07 | ||
|
||
1. Information We Collect | ||
- We collect information about the tabs you have open, including URLs and page titles. | ||
- We may collect summarized content from web pages for the summarization feature. | ||
- We store your API key for accessing summarization services. | ||
|
||
2. How We Use Your Information | ||
- To display and manage your open tabs within the extension | ||
- To generate summaries of web page content | ||
- To facilitate chat functionality about tab content | ||
|
||
3. Data Storage and Protection | ||
- All data is stored locally on your device using Chrome's storage API. | ||
- Your API key is encrypted before storage. | ||
- We do not transmit your data to our servers or any third parties. | ||
|
||
4. Third-Party Services | ||
- We use Google DeepMind Gemini for content summarization. Their privacy policy can be found at [gemini-api terms](https://ai.google.dev/gemini-api/terms#:~:text=This%20includes%20disconnecting%20this%20data,feature%20for%20that%20express%20purpose.). | ||
|
||
5. User Rights | ||
- You can delete all stored data by uninstalling the extension. | ||
- You can view and delete individual tab data within the extension interface. | ||
|
||
6. Changes to This Policy | ||
- We will notify users of any changes to this policy through the extension's update notes. | ||
|
||
7. Contact Us | ||
- If you have any questions about this privacy policy, please contact us at [[email protected]]. | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Privacy Policy for Chrome Tab Manager</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
line-height: 1.6; | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
} | ||
h1, h2 { | ||
color: #333; | ||
} | ||
h2 { | ||
margin-top: 30px; | ||
} | ||
p { | ||
margin-bottom: 15px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>Privacy Policy for Chrome Tab Manager</h1> | ||
<p>Last updated: 2024-10-07</p> | ||
|
||
<h2>1. Information We Collect</h2> | ||
<ul> | ||
<li>We collect information about the tabs you have open, including URLs and page titles.</li> | ||
<li>We may collect summarized content from web pages for the summarization feature.</li> | ||
<li>We store your API key for accessing summarization services.</li> | ||
</ul> | ||
|
||
<h2>2. How We Use Your Information</h2> | ||
<ul> | ||
<li>To display and manage your open tabs within the extension</li> | ||
<li>To generate summaries of web page content</li> | ||
<li>To facilitate chat functionality about tab content</li> | ||
</ul> | ||
|
||
<h2>3. Data Storage and Protection</h2> | ||
<ul> | ||
<li>All data is stored locally on your device using Chrome's storage API.</li> | ||
<li>Your API key is encrypted before storage.</li> | ||
<li>We do not transmit your data to our servers or any third parties.</li> | ||
</ul> | ||
|
||
<h2>4. Third-Party Services</h2> | ||
<p>We use Google DeepMind Gemini for content summarization. Their privacy policy can be found at <a href="https://ai.google.dev/gemini-api/terms#:~:text=This%20includes%20disconnecting%20this%20data,feature%20for%20that%20express%20purpose." target="_blank">gemini-api terms</a>.</p> | ||
|
||
<h2>5. User Rights</h2> | ||
<ul> | ||
<li>You can delete all stored data by uninstalling the extension.</li> | ||
<li>You can view and delete individual tab data within the extension interface.</li> | ||
</ul> | ||
<h2>6. Changes to This Policy</h2> | ||
<p>We will notify users of any changes to this policy through the extension's update notes.</p> | ||
<h2>7. Contact Us</h2> | ||
<p>If you have any questions about this privacy policy, please contact us at <a href="mailto:[email protected]">[email protected]</a>.</p> | ||
</body> | ||
</html> |