-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy-policy.html
More file actions
127 lines (107 loc) · 4.02 KB
/
Copy pathprivacy-policy.html
File metadata and controls
127 lines (107 loc) · 4.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DoneLog - Privacy Policy</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #353c30;
}
header {
background-color: #181818;
color: #656b70;
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 50px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
}
nav a {
color: #656b70;
text-decoration: none;
margin: 0 15px;
font-size: 18px;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.logo img {
height: 50px;
margin-right: 15px;
}
.container {
max-width: 800px;
margin: 50px auto;
background: #fff;
padding: 30px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-radius: 10px;
}
h1 {
color: #2c3e50;
text-align: center;
}
p,
li {
font-size: 1rem;
line-height: 1.3;
color: #555;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="icons/icon128.png" alt="DoneLog Logo">
</div>
<nav>
<a href="./home.html#donelog">DoneLog</a>
<a href="./home.html#terms">Terms of Service</a>
<a href="#privacy">Privacy Policy</a>
<a href="mailto:khannasimahmad@gmail.com.com">Contact</a>
</nav>
</header>
<div class="container">
<h1>Privacy Policy</h1>
<strong>Last Updated:</strong> <span>25 January, 2025</span>
<p>Your privacy is important to us. This Privacy Policy explains how DoneLog collects, uses, and protects your
information when you use our Chrome extension.</p>
<h3>1. Information We Collect</h3>
<p>DoneLog does not collect any personal data from users. However, we may store the following locally in your
browser:</p>
<ul>
<li>To-do task details (entered by you).</li>
<li>Timestamps related to task management.</li>
</ul>
<h3>2. How We Use Your Information</h3>
<p>Your data is only used locally to provide the to-do tracking functionality.</p>
<p>If you choose to push tasks to Google Sheets, the extension will store tasks within your own Google account.
</p>
<h3>3. Data Storage</h3>
<p>All to-do data is stored locally in your browser's local storage and, optionally, in your Google Sheet if you
connect your account. We do not store or have access to your data on our servers.</p>
<h3>4. Third-Party Services</h3>
<p>We use Google APIs to push your to-do tasks to your Google Sheet. Google's privacy policies apply when you
authenticate and use this feature.</p>
<h3>5. Your Choices and Controls</h3>
<p>You can clear your stored tasks at any time through the extension interface. You can also revoke Google
account access through your Google security settings.</p>
<h3>6. Security Measures</h3>
<p>We take reasonable steps to secure your data stored locally. However, you are responsible for keeping your
Google account and data secure when using the extension.</p>
<h3>7. Changes to this Privacy Policy</h3>
<p>We may update this policy from time to time. Any significant changes will be communicated through the
extension update or via our support channels.</p>
<h3>8. Contact Us</h3>
<p>If you have any questions or concerns about this Privacy Policy, please contact us at
khannasimahmad@gmail.com.</p>
</div>
</body>
</html>