-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
118 lines (105 loc) · 2.52 KB
/
privacy.html
File metadata and controls
118 lines (105 loc) · 2.52 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!--
Privacy Policy for browser extension
© John Navas 2025, All Rights Reserved
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Privacy Policy</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
margin: 0;
background: #e6f0fa;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
}
.privacy-box {
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
padding: 2rem 2.5rem;
max-width: 402px;
width: 90vw;
margin: 2rem 0;
text-align: left;
color: #222;
}
.privacy-box h1 {
margin: 0 0 0.4em;
font-size: 2rem;
text-align: center;
color: #1976d2;
}
.privacy-box p.summary {
font-weight: bold;
font-size: 1.1rem;
margin-top: 0.3em;
margin-bottom: 0.6em;
text-align: center;
color: #333;
}
.privacy-box ul {
padding-left: 1.2em;
margin: 0 0 1em;
list-style-type: disc;
}
.privacy-box li {
font-size: 1.05rem;
margin-bottom: 0.5em;
line-height: 1.4;
}
.privacy-box strong {
color: #1976d2;
}
.privacy-box p.updated {
font-size: 0.9rem;
color: #666;
margin-top: 1.2rem;
margin-bottom: 0;
text-align: center;
}
@media (max-width: 500px) {
.privacy-box {
padding: 1rem;
max-width: 98vw;
}
.privacy-box h1 {
font-size: 1.5rem;
}
.privacy-box li {
font-size: 1rem;
}
}
</style>
</head>
<body>
<div class="privacy-box">
<h1>Browser Extension<br>Privacy Policy</h1>
<p class="summary">Your privacy is fully respected.</p>
<ul>
<li>
<strong>User Data:</strong> <em>No</em> collection or sharing of user data. All activity is <em>local</em>.
</li>
<li>
<strong>Cookies:</strong> Cookies are <em>not</em> used.
</li>
<li>
<strong>Permissions:</strong> Only the <em>minimum</em> necessary permissions are requested.
</li>
<li>
<strong>Control:</strong> You can remove or disable the extension at any time. No data is retained after
removal.
</li>
<li>
<strong>Transparency:</strong> Fully <em>open source</em> for transparency.
</li>
</ul>
<p class="updated">Updated: June 17, 2025</p>
</div>
</body>
</html>