-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy_policy.html
More file actions
87 lines (77 loc) · 3.47 KB
/
privacy_policy.html
File metadata and controls
87 lines (77 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Linkora</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
color: #333;
}
h1 {
font-size: 2em;
margin-bottom: 0.3em;
}
h2 {
font-size: 1.5em;
margin-top: 1.5em;
margin-bottom: 0.5em;
}
p {
margin: 1em 0;
}
ul {
margin: 1em 0;
padding-left: 20px;
}
li {
margin: 0.5em 0;
}
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
strong {
font-weight: 600;
}
</style>
</head>
<body>
<h1>Privacy Policy for Linkora</h1>
<p><strong>Effective Date: October 26, 2025</strong></p>
<h2>Linkora doesn't collect your data.</h2>
<p>That's the privacy policy in a nutshell.</p>
<p><strong>Your data, your device, your control.</strong> It stays exactly where you want it.</p>
<h2>How Linkora Works</h2>
<p>Linkora is a link organizer for Android and desktop. All your links, folders, notes, and settings are stored locally on your device in a SQLite database. Nothing is sent to any Linkora servers because there are no Linkora-managed servers to begin with.</p>
<h2>Self-Hosted Sync</h2>
<p>Sync is optional. When enabled, your data syncs only to a server you host and control. No one except YOU has access to your sync server or the data you sync.</p>
<h2>Localization</h2>
<p>The app fetches UI translations from a localization server. This server delivers text strings for the interface and doesn't collect or log any user data. You can switch to your own self-hosted instance if you prefer.</p>
<h2>Metadata Fetching</h2>
<p>When you save a link, your device requests the page title and images directly from the source website. These are standard web requests that the website may log. For Twitter links, the app uses vxTwitter, a privacy-respecting metadata service. No data is sent anywhere else.</p>
<h2>Permissions</h2>
<ul>
<li><strong>Internet</strong>: To fetch metadata from websites and sync to your server</li>
<li><strong>Storage</strong>: To save and restore local backups</li>
<li><strong>Network State</strong>: To check connectivity for sync</li>
<li><strong>Background Service</strong>: Only used when refreshing mass link data or exporting snapshots, which can only be initiated by you</li>
</ul>
<h2>Children's Privacy</h2>
<p>Linkora doesn't collect personal information and doesn't require accounts. The app is not specifically targeted at children under 13.</p>
<h2>Data Sales</h2>
<p>There's nothing to sell.</p>
<h2>Open Source</h2>
<p>Every piece of the Linkora project is public and open-source with their respective licenses. You can verify everything at: <a href="https://github.com/LinkoraApp/">https://github.com/LinkoraApp/</a></p>
<h2>Contact</h2>
<p>For questions or issues: <a href="mailto:linkoraapp@protonmail.com">linkoraapp@protonmail.com</a></p>
</body>
</html>