-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (112 loc) · 4.8 KB
/
Copy pathindex.html
File metadata and controls
116 lines (112 loc) · 4.8 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>spoilr | Reveal Jigsaw Explorer Puzzle Images</title>
<meta
name="description"
content="spoilr reveals the hidden image URL behind custom Jigsaw Explorer puzzle links directly in your browser."
>
<meta name="robots" content="index, follow">
<meta name="author" content="Markus Bodlos">
<link rel="canonical" href="https://markus-bo.github.io/spoilr/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="spoilr">
<meta property="og:title" content="spoilr | Reveal Jigsaw Explorer Puzzle Images">
<meta
property="og:description"
content="Reveal the hidden image URL behind custom Jigsaw Explorer puzzle links directly in your browser."
>
<meta property="og:url" content="https://markus-bo.github.io/spoilr/">
<meta property="og:image" content="https://markus-bo.github.io/spoilr/assets/brand/logo-large.png">
<meta property="og:image:width" content="1448">
<meta property="og:image:height" content="1086">
<meta property="og:image:alt" content="spoilr">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="spoilr | Reveal Jigsaw Explorer Puzzle Images">
<meta
name="twitter:description"
content="Reveal the hidden image URL behind custom Jigsaw Explorer puzzle links directly in your browser."
>
<meta name="twitter:image" content="https://markus-bo.github.io/spoilr/assets/brand/logo-large.png">
<link rel="icon" href="assets/brand/logo-small.png" type="image/png">
<link rel="stylesheet" href="assets/styles.css">
<script src="assets/decoder.js" defer></script>
<script src="assets/app.js" defer></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "spoilr",
"url": "https://markus-bo.github.io/spoilr/",
"applicationCategory": "UtilityApplication",
"operatingSystem": "Any",
"description": "spoilr reveals the hidden image URL behind custom Jigsaw Explorer puzzle links directly in your browser.",
"isAccessibleForFree": true,
"creator": {
"@type": "Person",
"name": "Markus Bodlos",
"url": "https://github.com/markus-bo"
}
}
</script>
</head>
<body>
<div class="page-shell" id="page-shell" data-view="start">
<header class="app-header">
<div class="brand-lockup">
<img
class="brand-logo"
src="assets/brand/logo-ui.png"
width="700"
height="269"
alt="spoilr"
>
</div>
</header>
<main class="tool" aria-label="spoilr">
<h1 class="sr-only">spoilr Jigsaw Explorer image revealer</h1>
<p class="sr-only" id="tool-description">
Reveal the hidden image URL behind a custom Jigsaw Explorer puzzle link.
</p>
<form class="resolver-form" id="resolver-form" novalidate>
<label class="sr-only" for="puzzle-input">Puzzle URL</label>
<div class="input-row">
<input
id="puzzle-input"
name="url"
type="url"
inputmode="url"
spellcheck="false"
autocomplete="url"
placeholder="https://www.jigsawexplorer.com/online-jigsaw-puzzle-player.html?url="
>
<button class="primary-button" id="start-button" type="submit">Reveal</button>
</div>
<p class="form-error" id="form-error" role="alert" hidden></p>
</form>
<section class="output" id="output-panel" aria-live="polite" aria-busy="false" data-state="empty" hidden>
<img id="preview-image" alt="Resolved puzzle image" hidden>
<p class="output-message" id="output-message">No image yet.</p>
</section>
</main>
<footer class="start-note">
<p>Reveal hidden images behind custom <a href="https://www.jigsawexplorer.com" target="_blank" rel="noopener noreferrer">Jigsaw Explorer</a> puzzles.</p>
<p class="github-star-note">
If you like the app give it a star
<svg class="star-icon" aria-hidden="true" viewBox="0 0 24 24" focusable="false">
<path d="M12 2.8l2.8 5.7 6.3.9-4.6 4.5 1.1 6.3-5.6-3-5.6 3 1.1-6.3-4.6-4.5 6.3-.9L12 2.8z"/>
</svg>
on <a href="https://github.com/markus-bo/spoilr" target="_blank" rel="noopener noreferrer">GitHub</a>
</p>
<div class="credit-row">
<p>© 2026 spoilr</p>
</div>
</footer>
</div>
<noscript>
<p class="noscript">JavaScript is required.</p>
</noscript>
</body>
</html>