-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (78 loc) · 2.06 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Scratch Teacher Tools</title>
<style>
main {
max-width: 600px;
margin: auto;
padding: 1em;
}
div p {
text-align: justify;
}
footer {
text-align: right;
}
</style>
</head>
<body>
<main>
<h1>Scratch Plagiarism Checker</h1>
<div>
<p>
A tool for detecting plagiarism in
<a href="https://scratch.mit.edu/" target="_blank">Scratch projects</a
>.
</p>
<p>
Provide a folder or a ZIP file containing projects in the
<a
href="https://en.scratch-wiki.info/wiki/Scratch_File_Format"
target="_blank"
>Scratch File Format</a
>
(".sb3"). The tool will compare the
<a
href="https://en.scratch-wiki.info/wiki/Scratch_File_Format#Blocks"
target="_blank"
>blocks</a
>
and
<a
href="https://en.scratch-wiki.info/wiki/Scratch_File_Format#Targets"
target="_blank"
>targets</a
>
and give a score based on its similarity.
</p>
<p>
Try
<a id="example" href="/examples.zip"> uploading an example</a>.
</p>
</div>
<div id="app"></div>
<footer>
<p>
<small>
Source:
<a href="https://github.com/jorgebg/scratch-teacher-tools"
>github.com/jorgebg/scratch-teacher-tools</a
></small
>
</p>
</footer>
</main>
<script type="module" src="/src/main.ts"></script>
<script>
function example(e) {
e.preventDefault();
document.getElementById("fetch").click();
}
document.getElementById("example").addEventListener("click", example);
</script>
</body>
</html>