-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (79 loc) · 2.69 KB
/
index.html
File metadata and controls
86 lines (79 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>4ndyScratchExtensions Downloads</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #0a0a0a;
color: #00eaff;
margin: 0;
padding: 20px;
}
h2 {
font-size: 24px;
margin-bottom: 20px;
text-shadow: 0px 0px 12px #00eaff;
}
.download-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
max-width: 400px;
margin: auto;
}
.download-container a {
text-decoration: none;
width: 100%;
}
button {
background-color: transparent;
color: #00eaff;
padding: 12px 18px;
border: 2px solid #00eaff;
cursor: pointer;
font-size: 16px;
font-weight: bold;
border-radius: 8px;
width: 100%;
transition: all 0.3s ease-in-out;
box-shadow: 0 0 12px rgba(0, 234, 255, 0.5);
}
button:hover {
background-color: #00eaff;
color: #0a0a0a;
box-shadow: 0 0 20px rgba(0, 234, 255, 0.9);
transform: scale(1.05);
}
</style>
</head>
<body>
<h2>Download 4ndyScratchExtensions</h2>
<div class="download-container" id="downloads"></div>
<script>
const files = [
"4ndyAI.js", "4ndyCats.js", "4ndyCurrencyConversion.js", "4ndyEconomicalAnalytics.js",
"4ndyEncryption.js", "4ndyEvents.js", "4ndyFetch.js", "4ndyFilters.js", "4ndyJSON.js",
"4ndyMathComparisons.js", "4ndyMathUtilities.js", "4ndyMeasurementsConversions.js",
"4ndyNewYearCountdown.js", "4ndyNormalSussyStuff.js", "4ndyPopUps.js",
"4ndyQuestionUtilities.js", "4ndyT3xtManagement.js", "4ndyTextFiles.js",
"4ndyTimeNdateUtilities.js", "4ndyWeather.js", "4ndyYoutubeUtilities.js", "4ndypages.js"
];
const container = document.getElementById("downloads");
files.forEach(file => {
const link = document.createElement("a");
link.href = file;
link.download = file;
link.ariaLabel = `Download ${file}`;
const button = document.createElement("button");
button.textContent = file.replace(".js", ""); // Cleaner button text
link.appendChild(button);
container.appendChild(link);
});
</script>
</body>
</html>