-
Notifications
You must be signed in to change notification settings - Fork 3
/
privacy.html
46 lines (43 loc) · 1.99 KB
/
privacy.html
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
<!DOCTYPE html>
<html lang="en" dir="ltr" id="html">
<head>
<title>Itchy - Privacy Policy</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.micahlindley.com/blurbs/reset.css">
<link rel="stylesheet" href="css/landing.css">
<link rel="stylesheet" href="css/navbar.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Round" rel="stylesheet">
</head>
<body id="body" onload="document.body.style.opacity='1'">
<div id="navbar">
<nav>
<a href="/">Home</a>
<a href="/#about">About</a>
<a href="https://github.com/Scratch-Client-4/itchy-ionic/releases" target="_blank" rel="nofollow">Releases</a>
<a href="#">Privacy</a>
</nav>
</div>
<div class="about" id="about">
<div class="about-container">
<h1>Privacy Policy</h1>
<article>Itchy (referred to here as "THE APP") collects very little identifiable information about its users. It is important to note exactly what data we store:<br><br>
<ul>
<li>Your Scratch username</li>
<li>Your temporary auth token</li>
<li>Your app settings</li>
</ul>
<br>
<b>All of these are stored offline, on your phone.</b> The app tries to make as many web requests as possible directly from your phone, but there are a few technical limitations in certain situations that force them to go through our servers, hosted by Vercel, including: <br><br>
<ul>
<li>Logging in</li>
<li>Following users</li>
</ul>
<br>
Performing these tasks involves sending your username and password or your auth token to our servers. They are not saved or logged. Usage data of the app is not collected in any way that is identifiable of a certain user or group. Any data that is collected is completely generic and non-tracable.
</article>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Detect.js/2.2.2/detect.min.js"></script>
</body>
</html>