-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathprivacy.html
More file actions
48 lines (44 loc) · 1.53 KB
/
privacy.html
File metadata and controls
48 lines (44 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Privacy Policy</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
:root {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
:root {
background-color: #111;
color: #ddd;
color-scheme: dark;
}
a {
color: #4af;
}
}
main {
max-width: 600px;
margin: auto;
}
</style>
</head>
<body>
<main>
<h1>Privacy Policy</h1>
<!-- UPDATE THIS WHEN MAKING EDITS -->
<p><i>Updated August 6th, 2022</i></p>
<h2>What data we collect</h2>
<p>When a scratch.mit.edu project is loaded, the project ID and non-identifiable diagnostic information (such as cache hit/cache miss/errors) may be recorded for up to 24 hours for caching.</p>
<p>When a scratch.mit.edu project that contains cloud variables is loaded, your username (chosen by user or randomly generated each visit) and the project ID may be logged for up to 14 days to help prevent abuse.</p>
<h2>Third parties</h2>
<ul>
<li>The site is hosted on GitHub Pages</li>
<li>The site may contact the Scratch API to download projects</li>
</ul>
<h2>Contact</h2>
<p>Any concerns related to privacy or any other matter should be sent to: <a href="mailto:forkphorus@turbowarp.org">forkphorus@turbowarp.org</a></p>
</main>
</body>
</html>