-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
79 lines (70 loc) · 3.49 KB
/
privacy.html
File metadata and controls
79 lines (70 loc) · 3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - X Clean</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
color: #333;
}
h1 { color: #1d9bf0; }
h2 { color: #536471; margin-top: 30px; }
.last-updated { color: #666; font-style: italic; }
.highlight { background-color: #f7f9fa; padding: 15px; border-radius: 8px; margin: 20px 0; }
</style>
</head>
<body>
<h1>Privacy Policy for X Clean Extension</h1>
<p class="last-updated">Last updated: September 2025</p>
<div class="highlight">
<strong>Important:</strong> This extension does not collect, store, or transmit any personal data. All functionality is performed locally within your browser.
</div>
<h2>1. Data Collection</h2>
<p><strong>We do not collect any personal data.</strong> This extension operates entirely locally within your browser and does not:</p>
<ul>
<li>Collect personal information</li>
<li>Track your browsing activity</li>
<li>Send data to external servers</li>
<li>Store your Twitter/X account information</li>
</ul>
<h2>2. Local Storage</h2>
<p>The extension uses Chrome's local storage to save your preferences (such as which elements to hide). This data:</p>
<ul>
<li>Remains on your device only</li>
<li>Is not transmitted anywhere</li>
<li>Can be cleared by uninstalling the extension</li>
<li>Contains only your UI preference settings</li>
</ul>
<h2>3. Permissions Usage</h2>
<p>The extension requests the following permissions:</p>
<ul>
<li><strong>Storage:</strong> To save your customization preferences locally</li>
<li><strong>Clipboard Write:</strong> To modify copied links from x.com to twitter.com (optional feature)</li>
<li><strong>Tabs:</strong> To reload Twitter/X pages when settings are changed</li>
<li><strong>Host Permissions:</strong> Only for twitter.com and x.com domains to apply UI modifications</li>
</ul>
<h2>4. Third-Party Services</h2>
<p>This extension does not integrate with any third-party services or APIs. It only modifies the appearance of Twitter/X pages locally.</p>
<h2>5. Data Security</h2>
<p>Since no data is collected or transmitted, there are no security risks related to data handling. The extension:</p>
<ul>
<li>Uses Chrome's built-in security features</li>
<li>Implements Content Security Policy (CSP)</li>
<li>Only operates on specified domains</li>
<li>Does not execute external scripts</li>
</ul>
<h2>6. Changes to This Policy</h2>
<p>Any changes to this privacy policy will be reflected in the extension's version history. We recommend checking this page periodically for updates.</p>
<h2>7. Contact</h2>
<p>If you have any questions about this privacy policy, please contact us through the Chrome Web Store or the extension's support channels.</p>
<div class="highlight">
<strong>Summary:</strong> This extension is designed with privacy in mind. It performs all operations locally and does not collect or transmit any personal data. Your browsing experience remains private and secure.
</div>
</body>
</html>