-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
72 lines (65 loc) · 2.33 KB
/
privacy.html
File metadata and controls
72 lines (65 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy - DualSpark</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/png" href="icons/favicon.png" />
</head>
<body>
<div class="privacy-content">
<h1>Privacy Policy</h1>
<p class="last-updated">Last Updated: March 2024</p>
<h2>Introduction</h2>
<p>
DualSpark is committed to protecting your privacy. This Privacy Policy
explains how we collect, use, and safeguard your information when you
use our browser extension.
</p>
<h2>Information Collection</h2>
<p>
We do not collect any personal information through our extension. The
extension operates entirely locally on your device and does not transmit
any data to external servers.
</p>
<h3>Local Storage</h3>
<ul>
<li>
The extension stores your reading preferences locally on your device
</li>
<li>No reading history or personal data is collected or stored</li>
<li>All settings remain private and local to your browser</li>
</ul>
<h2>Data Usage</h2>
<p>
Since we don't collect any data, there is no usage or sharing of your
information. The extension functions purely as a local tool to enhance
your reading experience.
</p>
<h2>Updates to This Policy</h2>
<p>
We may update this Privacy Policy from time to time. We will notify you
of any changes by posting the new Privacy Policy on this page.
</p>
<h2>Contact Us</h2>
<p>
If you have any questions about this Privacy Policy, please contact us
at privacy@dualspark.app
</p>
<a href="index.html" class="back-link">← Back to Home</a>
</div>
<footer>
<p>
© 2024 DualSpark. All rights reserved.
<a href="privacy.html">Privacy Policy</a>
</p>
</footer>
</body>
</html>