forked from GICodeWarrior/fir
-
Notifications
You must be signed in to change notification settings - Fork 2
/
debug.html
32 lines (28 loc) · 1.42 KB
/
debug.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
<!DOCTYPE html>
<html>
<head>
<title>Foxhole Inventory Report (Debug)</title>
<meta charset="utf-8" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.0/html2canvas.min.js" integrity="sha512-UcDEnmFoMh0dYHu0wGsf5SKB7z7i5j3GuXHCnb3i4s44hfctoLihr896bxM0zL7jGkcHQXXrJsFIL62ehtd6yQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script defer crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/tesseract.js/3.0.2/tesseract.min.js" integrity="sha512-V245eVDwUZJ8QSJmPCsSRJ7btziSNHeGXqjB7e9m3YPTn/pBxPn9YJygW52iBjUe9cHbsGImBnAL7tsAEsUHmQ=="></script>
<script defer crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/tensorflow/4.19.0/tf.min.js" integrity="sha512-igqUV3/dgEwEgy7rlTGkkROXefZSjO/FsffNNQmkcoBm/SSbiVLfJ8paV+/KRx9tqia0eK6V4oxvUlF7lZZwzg=="></script>
<script type="module" src="includes/debug.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C3TZNS69Y1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-C3TZNS69Y1');
</script>
</head>
<body>
<h2>Foxhole Inventory Report (debug)</h2>
<form>
<label>Select map screenshot:
<input accept="image/*" type="file">
</label>
</form>
</body>
</html>