-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
138 lines (120 loc) · 2.96 KB
/
privacy.html
File metadata and controls
138 lines (120 loc) · 2.96 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!--
Privacy Policy for Title-Link Copy 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: 480px;
width: 90vw;
margin: 2rem 0;
color: #222;
text-align: left;
}
.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: 0.3em 0 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 li ul {
margin: 0.3em 0 0.3em 1.2em;
padding-left: 1em;
font-size: 0.97em;
}
.privacy-box li ul li {
margin-bottom: 0.2em;
line-height: 1.2;
}
.privacy-box strong {
color: #1976d2;
}
.privacy-box a {
color: #1976d2;
text-decoration: underline;
word-break: break-word;
}
.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>Title-Link Copy Privacy Policy</h1>
<p class="summary">Your privacy is fully respected.</p>
<ul>
<li>
<strong>No Data</strong> leaves your device, ever.
</li>
<li>
<strong>No Cookies:</strong> Cookies are <em>not</em> used by this extension.
</li>
<li>
<strong>Minimum Permissions:</strong> Only the <em>minimum necessary</em> permissions are requested:
</li>
<li>
<strong>User Control:</strong> You can remove or disable the extension at any time. No data is retained by the
extension after removal.
</li>
<li>
<strong>Open Source:</strong> The extension is fully open source—<a
href="https://github.com/JNavas2/Title-Link-Copy" target="_blank" rel="noopener noreferrer">review the code
here</a> for full transparency.
</li>
</ul>
<p class="updated">Updated: June 17, 2025</p>
</div>
</body>
</html>