-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathprivacy_consent.html
178 lines (160 loc) · 4.51 KB
/
privacy_consent.html
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Skylink Privacy Policy</title>
<style>
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
background-color: #f0f0f0;
}
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.header {
display: flex;
align-items: center;
gap: 10px;
}
.header img {
width: 30px;
height: 30px;
}
.centered-container {
background-color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-width: 700px;
width: 100%;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
color: #34495e;
}
a {
background-color: transparent;
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
p {
margin: 1em 0;
color: #2c3e50;
}
ul {
margin: 1em 0;
padding: 0 0 0 40px;
}
li {
list-style-type: disc;
margin: 0 0 0.25em 0;
color: #2c3e50;
}
.button {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0.5em 0;
overflow: visible;
text-transform: none;
padding: 12px 24px;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.button.accept {
background-color: #3498db;
}
.button.accept:hover {
background-color: #2980b9;
}
.button.decline {
background-color: #e74c3c;
}
.button.decline:hover {
background-color: #c0392b;
}
.button::-moz-focus-inner {
border-style: none;
padding: 0;
}
.button:-moz-focusring {
outline: 1px dotted ButtonText;
}
</style>
</head>
<body>
<div class="centered-container">
<div class="header">
<img src="./logo48.png" alt="SkyLink Logo" />
<h1>SkyLink Privacy Policy</h1>
</div>
<p>
While <b>no information is collected by the extension author</b>, this
extension makes use of the
<a href="https://developers.google.com/speed/public-dns/"
>Google DNS service</a
>
for required functionality. The Google DNS service is used because
browser extensions do not have native access to DNS, which is needed to
lookup the AT Protocol TXT record.
</p>
<p>A summary of what is collected by Google DNS:</p>
<ul>
<li>The IP address of your device sending the DNS query</li>
<li>Requested domain name</li>
<li>Request type (TXT)</li>
<li>Request Size</li>
<li>Transport protocol (HTTPS)</li>
<li>Client's autonomous system number</li>
<li>
User's geolocation: country, region, and city (no more specific than 1
km² and 1000 users)
</li>
<li>DNS Response code</li>
<li>Google DNS server information</li>
<li>Timestamp</li>
<li>Processing time</li>
<li>Response DNS flags (including AD, CD, DO, RD, and TC)</li>
<li>Response size</li>
<li>EDNS version</li>
<li>EDNS option</li>
<li>
EDNS Client Subnet (ECS) (IP protocol and prefix length -- excluding
the client IP address)
</li>
<li>Version string corresponding to HTTP path (/resolve)</li>
<li>Response HTTP encoding, such as application/dns-message or json</li>
</ul>
<p>
Please read and accept the full
<a
href="https://developers.google.com/speed/public-dns/privacy"
target="_blank"
>Google DNS privacy policy</a
>
before using this extension.
</p>
<button class="button accept" id="accept">Accept (Continue)</button>
<button class="button decline" id="decline">
Decline (Uninstall Extension)
</button>
<script src="privacy_consent.js"></script>
</div>
</body>
</html>