-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy-policy.html
More file actions
84 lines (70 loc) · 2.85 KB
/
Copy pathprivacy-policy.html
File metadata and controls
84 lines (70 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy – Veridian</title>
<style>
body {
font-family: sans-serif;
max-width: 800px;
margin: 2rem auto;
padding: 1rem;
color: #fff;
background-color: #0d1117;
}
h1,
h2 {
color: #58a6ff;
}
p, li {
font-size: 16px;
}
a {
color: #58a6ff;
}
</style>
</head>
<body>
<h1>Privacy Policy</h1>
<p><strong>Effective Date:</strong> May 13, 2025</p>
<p><strong>Veridian</strong> is a Chrome extension designed to inspire personal growth through time tracking,
motivational tools, and productivity aids. Your privacy is important to us. This policy outlines what data we
use and how it’s handled.</p>
<h2>Data Collection</h2>
<ul>
<li><strong>Location:</strong> Your approximate location is used temporarily to display current weather. This is
done through your browser’s geolocation API and is not stored or transmitted to our servers.</li>
<li><strong>No Personal Info:</strong> Veridian does not collect, store, or share your name, email, or any
personally identifiable information.</li>
<li><strong>No Tracking:</strong> We do not use cookies, analytics, or any third-party trackers.</li>
</ul>
<h2>Third-Party Services</h2>
<p>
Veridian uses public APIs like
<a href="https://wttr.in" target="_blank">wttr.in</a> for weather data,
<a href="https://nominatim.org" target="_blank">Nominatim</a> for location services, and
<a href="https://remixicon.com" target="_blank">Remix Icon</a> for icons used in shortcuts.
These services may have their own privacy policies and data handling practices.
</p>
<h2>Data Storage</h2>
<p>Data such as your goal date, task list, and Pomodoro settings are stored locally in your browser using
<code>localStorage</code>. This data never leaves your device.
</p>
<h2>Contact</h2>
<p>If you have questions or concerns about this policy, please reach out at <a
href="mailto:solankisingha23@gmail.com">solankisingha23@gmail.com</a>.</p>
<h2>Thank You</h2>
<p>
Thank you for using Veridian. Your trust means a lot. I’m committed to keeping this tool useful, respectful of
your data, and focused on your productivity.
</p>
<p class="copyright">© <span id="currentYear"></span> Veridian. All rights reserved.</p>
<script>
const yearSpan = document.getElementById("currentYear");
if (yearSpan) {
yearSpan.textContent = new Date().getFullYear();
}
</script>
</body>
</html>