-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
125 lines (114 loc) · 4.56 KB
/
privacy.html
File metadata and controls
125 lines (114 loc) · 4.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Privacy Policy – The Memory Mate</title>
<style>
body {
font-family: 'Segoe UI', Arial, sans-serif;
background: #f7fafc;
color: #222;
margin: 0;
padding: 0;
}
.container {
max-width: 680px;
margin: 32px auto;
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 32px rgba(80,120,100,0.07);
padding: 32px 28px 32px 28px;
}
h1, h2 {
color: #256029;
}
h1 {
margin-top: 0;
font-size: 2.1em;
margin-bottom: 0.2em;
}
h2 {
margin-top: 2em;
margin-bottom: 0.5em;
}
p, li {
font-size: 1.09em;
line-height: 1.7;
}
ul {
margin: 0 0 1.5em 1.3em;
}
.date {
color: #666;
font-size: 0.96em;
margin-bottom: 2em;
}
a { color: #38983c; }
@media (max-width: 700px) {
.container {
padding: 18px 7vw 24px 7vw;
border-radius: 0;
}
h1 { font-size: 1.5em; }
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<div class="date">Effective date: 04/07/2025</div>
<h2>1. Introduction</h2>
<p>
The Memory Mate Chrome Extension (“we”, “us”, or “our”) respects your privacy. This Privacy Policy explains how we handle and protect your data when you use our extension.
</p>
<h2>2. Information We Collect</h2>
<ul>
<li><strong>Local Storage Only:</strong> The extension stores user data—such as saved AI chatbot answers, projects (folders), and user settings—<b>locally in your browser</b> using Chrome’s extension storage. <b>We do not collect, transmit, or share any personal or saved content with our servers or third parties.</b></li>
<li><strong>License Activation (Optional):</strong> If you choose to activate a PRO license, the extension may communicate with our licensing provider (Freemius) to validate your license key and status. Only the minimal data required for license validation (such as license key and email address) is sent to the licensing API.</li>
</ul>
<h2>3. How We Use Your Data</h2>
<p>
Your data is used <b>solely to provide the extension’s features</b>—including saving, organizing, searching, importing, and exporting answers and projects. No user content or browsing activity is transmitted, analyzed, or sold to anyone.
</p>
<h2>4. Third-Party Services</h2>
<p>
We use <a href="https://freemius.com/" target="_blank">Freemius</a> for license management and validation. Freemius may process license data (e.g., your email and license key) only for the purpose of validating your PRO features.<br>
<b>No saved answers, user content, or browsing data is shared with Freemius or any other third parties.</b>
</p>
<h2>5. Permissions Explained</h2>
<ul>
<li><b>storage:</b> To save your data locally.</li>
<li><b>host_permissions:</b> To capture AI chatbot answers only when you choose.</li>
<li><b>downloads & fileSystem:</b> To enable import/export of your saved data.</li>
</ul>
<p>
The extension does <b>not</b> access your browsing history or transmit data without your explicit action.
</p>
<h2>6. Data Security</h2>
<p>
All data is stored locally within your browser and is never sent to external servers except for license validation (as described above). We take all reasonable precautions to ensure your data remains private and secure.
</p>
<h2>7. User Control</h2>
<p>
You can delete any or all saved data at any time via the extension’s interface. If you uninstall the extension, all locally stored data is automatically deleted from your browser.
</p>
<h2>8. Children’s Privacy</h2>
<p>
The extension is not intended for children under the age of 13 and does not knowingly collect any information from children.
</p>
<h2>9. Changes to This Policy</h2>
<p>
We may update this Privacy Policy from time to time. Any changes will be posted on this page with an updated effective date.
</p>
<h2>10. Contact Us</h2>
<p>
If you have questions or concerns about this Privacy Policy, please contact us at <a href="mailto:ghitaprn@gmail.com">admin@thememorymate.com</a>.
</p>
<p style="margin-top: 2em; font-size: 0.95em; color: #888;">
By using The Memory Mate, you agree to this Privacy Policy.<br>
<em>Last updated: 29/06/2025</em>
</p>
</div>
</body>
</html>