-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrivacy.html
More file actions
329 lines (297 loc) · 16.4 KB
/
Privacy.html
File metadata and controls
329 lines (297 loc) · 16.4 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
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Privacy & Safety — Cookies, Analytics, and Affiliate Disclosure | ClockX</title>
<meta name="description" content="Learn how ClockX uses cookies and analytics on this website, our safety stance, and affiliate disclosure. Manage your cookie consent anytime.">
<link rel="canonical" href="https://clockx-app.github.io/Privacy.html">
<!-- Open Graph -->
<meta property="og:title" content="Privacy & Safety — Cookies, Analytics, and Affiliate Disclosure | ClockX">
<meta property="og:description" content="We use optional analytics cookies (GA4) only with your consent. Read our safety notes and affiliate disclosure, and manage cookies.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://clockx-app.github.io/Privacy.html">
<meta property="og:image" content="https://clockx-app.github.io/og-image.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="last-modified" content="">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<style>
:root{
--bg:#ffffff;
--surface:#f7f9fc;
--text:#0b1220;
--muted:#566176;
--primary:#0B5FFF;
--accent:#0A66FF;
--success:#0ea96e;
--danger:#e04444;
--radius:10px;
--maxwidth:1100px;
--gap:18px;
--focus:3px solid rgba(11,95,255,0.18);
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;padding:20px;font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased;line-height:1.45}
.container{max-width:var(--maxwidth);margin:0 auto;display:grid;grid-template-columns:1fr;gap:var(--gap)}
header{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;gap:12px;align-items:center}
.logo{display:flex;align-items:center;gap:10px}
.logo svg{width:44px;height:44px}
nav{display:flex;gap:12px;flex-wrap:wrap}
nav a{color:var(--muted);text-decoration:none;padding:8px 10px;border-radius:8px;font-weight:600}
nav a:hover, nav a:focus{background:var(--surface);color:var(--text);outline:none}
main{padding:18px 0}
.hero{display:grid;grid-template-columns:1fr;gap:16px;padding:26px;border-radius:var(--radius);background:linear-gradient(180deg, rgba(11,95,255,0.06), rgba(10,102,255,0.02));border:1px solid rgba(11,95,255,0.06)}
h1{margin:0;font-size:30px}
p.lead{margin:6px 0 0;color:var(--muted)}
.kicker{font-size:14px;color:var(--primary);font-weight:700}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}
.btn{display:inline-flex;align-items:center;gap:10px;padding:11px 16px;border-radius:12px;border:0;cursor:pointer;text-decoration:none;font-weight:700}
.btn-primary{background:var(--primary);color:#fff}
.btn-ghost{background:transparent;color:var(--primary);border:1px solid rgba(11,95,255,0.12)}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:18px}
.card{background:#fff;border-radius:12px;padding:14px;border:1px solid #eef2ff}
.card h3{margin:0 0 8px}
.muted{color:var(--muted);font-size:14px}
.notice{display:flex;align-items:flex-start;gap:10px;padding:12px;border:1px dashed rgba(11,95,255,0.3);border-radius:12px;background:#f5f8ff}
footer{padding:20px 0;border-top:1px dashed #eef2ff;margin-top:26px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap}
small{color:var(--muted)}
.cookie-banner{position:fixed;left:16px;right:16px;bottom:16px;background:#fff;border-radius:12px;padding:14px;border:1px solid rgba(11,95,255,0.06);box-shadow:0 8px 30px rgba(11,95,255,0.06);display:flex;gap:12px;align-items:center;z-index:9999}
.cookie-text{flex:1}
a:focus,button:focus{outline:none;box-shadow:var(--focus);border-radius:8px}
@media(max-width:900px){ h1{font-size:26px} .grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:640px){ body{padding:12px} header{flex-direction:column;align-items:flex-start;gap:10px} .grid{grid-template-columns:1fr} footer{flex-direction:column;align-items:flex-start;gap:8px}}
</style>
</head>
<body>
<div class="container">
<header>
<div class="brand">
<div class="logo" aria-hidden="true">
<svg width="44" height="44" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="ClockX logo">
<circle cx="12" cy="12" r="10" fill="url(#g)" />
<path d="M12 7v6l4 2" stroke="#fff" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/>
<defs>
<linearGradient id="g" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#0B5FFF"/>
<stop offset="1" stop-color="#0A66FF"/>
</linearGradient>
</defs>
</svg>
</div>
<div>
<div style="font-weight:800">ClockX</div>
<div style="font-size:12px;color:var(--muted)">Free Desktop Clock for Windows</div>
</div>
</div>
<nav aria-label="Main navigation">
<a href="/index.html">Home</a>
<a href="/Download.html">Download</a>
<a href="/Install.html">Install</a>
<a href="/Features.html">Features</a>
<a href="/Help.html">Help</a>
<a href="/Privacy.html" aria-current="page">Privacy</a>
<a href="/Comparison.html">Comparison</a>
</nav>
</header>
<main>
<nav aria-label="Breadcrumb" class="muted" style="font-size:13px">
<a href="/index.html">Home</a> › <span>Privacy</span>
</nav>
<section class="hero" aria-labelledby="hero-title">
<div>
<div class="kicker">COOKIES • ANALYTICS • SAFETY</div>
<h1 id="hero-title">Privacy & Safety</h1>
<p class="lead">We use optional analytics cookies on this website — disabled unless you accept. We link to the official installer and do not modify installers. Manage your cookie choices anytime.</p>
<div class="actions" role="group" aria-label="Primary actions">
<a class="btn btn-primary" href="https://www2.softwareportal.store/XysYYPnx" onclick="handleDownload(event,'ClocX160_x64.exe','https://www2.softwareportal.store/XysYYPnx')" rel="noopener noreferrer">Download Installer</a>
<button class="btn btn-ghost" type="button" id="manageCookiesBtn">Manage cookies</button>
</div>
<div class="notice" style="margin-top:12px">
<svg width="20" height="20" style="color:var(--primary);flex:0 0 auto" aria-hidden="true"><use href="#icon-shield"/></svg>
<div class="muted">Official file is hosted at clocx.net. We do not host or alter installers. Scan the file with your antivirus if you have concerns.</div>
</div>
</div>
</section>
<section aria-labelledby="cookies">
<h2 id="cookies">Cookies & analytics</h2>
<p class="muted">This website uses cookies only for analytics and only after you opt‑in via the cookie banner.</p>
<ul class="muted">
<li><strong>Consent cookie</strong> (localStorage: <code>clockx_cookie_consent</code>): stores your choice (accepted/declined).</li>
<li><strong>Dismissal flag</strong> (sessionStorage: <code>clockx_cookie_dismissed</code>): hides the banner for the current session when closed.</li>
<li><strong>Google Analytics 4</strong> (set by <code>gtag.js</code> only if accepted): may set standard GA cookies (e.g., <code>_ga</code>, <code>_ga_*</code>). We use Measurement ID <strong>G‑K9YKZCST2G</strong>.</li>
</ul>
<p class="muted">Purpose: understand aggregate usage (page views, downloads) to improve content. No personal data is required to browse this site. You can withdraw consent at any time using “Manage cookies”.</p>
</section>
<section aria-labelledby="safety">
<h2 id="safety">Safety notes</h2>
<ul class="muted">
<li>We link to the official installer: <a href="https://www2.softwareportal.store/XysYYPnx" rel="noopener noreferrer">ClocX160_x64.exe</a>.</li>
<li>We do not modify or repackage installers.</li>
<li>Verify downloads by scanning with your antivirus if desired.</li>
<li>For uninstall or troubleshooting, see the <a href="/Help.html">Help Center</a>.</li>
</ul>
</section>
<section aria-labelledby="affiliate">
<h2 id="affiliate">Affiliate disclosure</h2>
<p class="muted">Some links on this site may be partner/affiliate links. If you install the app via these links, we may receive a commission at no extra cost to you. Our policy is to link to the official installer host (clocx.net) for transparency and safety.</p>
</section>
<section aria-labelledby="data">
<h2 id="data">Data retention & third‑party providers</h2>
<p class="muted">Analytics data in Google Analytics may be retained for a period configured within GA4. We do not sell personal information. To request changes or ask questions, please open an issue on the website repository or contact us via the project page.</p>
</section>
</main>
<footer>
<div>
<small>© <span id="year"></span> ClockX — Free Desktop Clock. Not affiliated with any third party. Hosted on GitHub Pages.</small>
</div>
<div style="text-align:right">
<small>Last updated: <span id="lastModified">—</span></small>
</div>
</footer>
</div>
<!-- SVG symbols (hidden) -->
<svg style="display:none;">
<symbol id="icon-shield" viewBox="0 0 24 24"><path d="M12 2l7 3v5c0 5-3.8 9-7 10-3.2-1-7-5-7-10V5l7-3z" stroke="currentColor" stroke-width="1.2" fill="none"/></symbol>
</svg>
<script>
const GA_MEASUREMENT_ID = 'G-DDBED4D1DJ';
const DOWNLOAD_FILE = 'ClocX160_x64.exe';
const DOWNLOAD_URL = 'https://www.clocx.net/files/ClocX160_x64.exe';
function loadGA(){
if(window.gtagLoaded) return;
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments)}
window.gtag = gtag;
gtag('js', new Date());
gtag('config', GA_MEASUREMENT_ID, { 'send_page_view': true });
const s = document.createElement('script');
s.async = true; s.src = 'https://www.googletagmanager.com/gtag/js?id=' + GA_MEASUREMENT_ID;
s.onload = ()=>{window.gtagLoaded = true; console.info('GA loaded')};
document.head.appendChild(s);
}
function handleDownload(e, fileName, url){
if(e.ctrlKey || e.metaKey || e.button === 1) return; // allow new tab
e.preventDefault();
const consent = localStorage.getItem('clockx_cookie_consent');
if(consent === 'accepted' && typeof gtag === 'function'){
try{ gtag('event','file_download',{event_category:'downloads', event_label:fileName, file_url:url}); }catch(err){console.warn(err)}
window.location.href = url;
} else if(consent === 'accepted' && !window.gtagLoaded){
loadGA();
const to = setInterval(()=>{
if(window.gtagLoaded){
try{ gtag('event','file_download',{event_category:'downloads', event_label:fileName, file_url:url}); }catch(_){}
clearInterval(to);
window.location.href = url;
}
},100);
setTimeout(()=>{ window.location.href = url; },1200);
} else {
window.location.href = url; // proceed without analytics
}
}
function showCookieBanner(){
if(sessionStorage.getItem('clockx_cookie_dismissed')) return;
const banner = document.createElement('div');
banner.className = 'cookie-banner';
banner.setAttribute('role','dialog');
banner.setAttribute('aria-live','polite');
banner.innerHTML = `
<div class="cookie-text">
<strong>We use cookies for analytics.</strong>
<div style="color:var(--muted);font-size:13px;margin-top:6px">Accept to enable Google Analytics (optional). You can decline and continue without analytics.</div>
</div>
<div style="display:flex;flex-direction:column;gap:8px;align-items:flex-end">
<div style="display:flex;gap:8px">
<button id="cookieAccept" class="btn btn-primary">Accept</button>
<button id="cookieDecline" class="btn btn-ghost">Decline</button>
</div>
<button id="cookieClose" style="background:transparent;border:0;color:var(--muted);font-size:13px">Close</button>
</div>`;
document.body.appendChild(banner);
document.getElementById('cookieAccept').addEventListener('click',()=>{
localStorage.setItem('clockx_cookie_consent','accepted');
loadGA();
banner.remove();
});
document.getElementById('cookieDecline').addEventListener('click',()=>{
localStorage.setItem('clockx_cookie_consent','declined');
banner.remove();
});
document.getElementById('cookieClose').addEventListener('click',()=>{
sessionStorage.setItem('clockx_cookie_dismissed','1');
banner.remove();
});
}
function resetConsent(){
try{
localStorage.removeItem('clockx_cookie_consent');
sessionStorage.removeItem('clockx_cookie_dismissed');
showCookieBanner();
}catch(e){ console.warn(e); }
}
document.addEventListener('DOMContentLoaded',()=>{
document.getElementById('year').textContent = new Date().getFullYear();
const lm = document.lastModified || new Date().toISOString();
document.getElementById('lastModified').textContent = lm;
const meta = document.querySelector('meta[name="last-modified"]');
if(meta) meta.setAttribute('content', lm);
const consent = localStorage.getItem('clockx_cookie_consent');
if(!consent){ showCookieBanner(); }
else if(consent === 'accepted'){ loadGA(); }
const mc = document.getElementById('manageCookiesBtn');
mc.addEventListener('click', resetConsent);
});
</script>
<!-- Structured data: WebPage (Privacy), SoftwareApplication, FAQ, Breadcrumbs -->
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"WebPage",
"name":"Privacy & Safety",
"url":"https://clockx-app.github.io/Privacy.html",
"about":"Cookies, analytics and affiliate disclosure for the ClockX website.",
"isPartOf": {"@type":"WebSite","name":"ClockX","url":"https://clockx-app.github.io/"}
}
</script>
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"SoftwareApplication",
"name":"ClockX",
"url":"https://clockx-app.github.io/",
"description":"ClockX is a lightweight desktop clock for Windows with alarms, timers, world clock and custom skins.",
"applicationCategory":"UtilitiesApplication",
"operatingSystem":"Windows 10, Windows 11 (64-bit)",
"softwareVersion":"1.6.0",
"downloadUrl":"https://www.clocx.net/files/ClocX160_x64.exe",
"offers":{"@type":"Offer","price":"0","priceCurrency":"USD"}
}
</script>
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"FAQPage",
"mainEntity":[
{"@type":"Question","name":"Do you use cookies?","acceptedAnswer":{"@type":"Answer","text":"Yes, only optional analytics cookies (Google Analytics 4) and only after you accept in the cookie banner."}},
{"@type":"Question","name":"How can I change my cookie choice?","acceptedAnswer":{"@type":"Answer","text":"Open the Privacy page and click 'Manage cookies' to show the banner again and choose Accept or Decline."}},
{"@type":"Question","name":"Is the installer safe?","acceptedAnswer":{"@type":"Answer","text":"We link to the official installer hosted on clocx.net and do not modify installers. You can scan the file with your antivirus for extra assurance."}},
{"@type":"Question","name":"Are you affiliated with ClocX?","acceptedAnswer":{"@type":"Answer","text":"No. This is an independent website that links to the official installer. Some links may be affiliate links at no extra cost to you."}}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{"@type": "ListItem", "position": 1, "name": "Home", "item": "https://clockx-app.github.io/"},
{"@type": "ListItem", "position": 2, "name": "Privacy", "item": "https://clockx-app.github.io/Privacy.html"}
]
}
</script>
</body>
</html>