-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (106 loc) · 4.78 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thumbnail Finder Revived</title>
<link rel="icon" type="image/x-icon" href="https://github.com/munkaylol/thumbnail-finder-revived/blob/main/thumb-finder-icon-3-hq.png?raw=true">
<link id="styleSheet" rel="stylesheet" href="style.css">
<script src="app.js" defer></script>
</head>
<body>
<div class="container">
<h1>Thumbnail Finder Revived</h1>
<p>Find archived thumbnails via <a href="https://archive.org/help/wayback_api.php">Archive.org's API</a>.</p>
<p><a href="https://github.com/munkaylol/thumbnail-finder-revived">Source code</a> - No attribution needed - <a href="https://github.com/normanlol/thumb-finder">Original source code</a></p>
<p>By: <a href="https://github.com/normanlol">normanlol</a>. Fixed, reuploaded, and added to by: <a href="https://github.com/munkaylol">munkaylol</a>.</p>
<p><a href="old/">Revert to old layout.</a></p>
<button id="modeToggle" class="mode-toggle" aria-label="Toggle dark mode">
<svg class="sun-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
<svg class="moon-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
</button>
<div id="noScriptHide" style="display:none;">
<input type="text" id="urlInput" placeholder="Enter YouTube URL or Video ID">
<button id="retrieveButton" onclick="getAll()">Retrieve URL</button>
<table>
<tr>
<th>Image Server</th>
<th>Availablity</th>
</tr>
<tr>
<th>Main 1 ("i")</th>
<th id="i">...</th>
</tr>
<tr>
<th>Main 2 ("i", "vi_webp")</th>
<th id="i-vi_webp">...</th>
</tr>
<tr>
<th>Alt 1 ("i1")</th>
<th id="i1">...</th>
</tr>
<tr>
<th>Alt 2 ("i1", "vi_webp")</th>
<th id="i1-vi_webp">...</th>
</tr>
<tr>
<th>Alt 3 ("i2")</th>
<th id="i2">...</th>
</tr>
<tr>
<th>Alt 4 ("i2", "vi_webp")</th>
<th id="i2-vi_webp">...</th>
</tr>
<tr>
<th>Alt 5 ("i3")</th>
<th id="i3">...</th>
</tr>
<tr>
<th>Alt 6 ("i3", "vi_webp")</th>
<th id="i3-vi_webp">...</th>
</tr>
<tr>
<th>Alt 7 ("i4")</th>
<th id="i4">...</th>
</tr>
<tr>
<th>Alt 8 ("i4", "vi_webp")</th>
<th id="i4-vi_webp">...</th>
</tr>
<tr>
<th>Alt 9 ("img")</th>
<th id="img">...</th>
</tr>
<tr>
<th>Alt 10 ("img", "vi_webp")</th>
<th id="img-vi_webp">...</th>
</tr>
<tr>
<th>Alt 11 ("img.youtube")</th>
<th id="img-youtube">...</th>
</tr>
<tr>
<th>Alt 12 ("img.youtube", "vi_webp")</th>
<th id="img-youtube-vi_webp">...</th>
</tr>
</table>
<p>Once you found one that was archived, click on one of the blue "Archived" links and right click the image and save it!</p>
</div>
<noscript>
<p><strong>This webapp requires JavaScript.</strong></p>
</noscript>
</div>
</body>
</html>