-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquick_links.html
120 lines (113 loc) · 4.11 KB
/
quick_links.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
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="main.css" type="text/css">
<script src="cursor.js" defer></script>
<script src="background.js" defer></script>
<head>
<title>Welcome to GurfaceGG2</title>
<style>
.button-container {
display: flex;
flex-direction: row;
gap: 10%;
align-items: center;
display:center;
left:50%;
}
.button {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 40%;
height: 100%;
background-color: #4CAF50;
color: white;
text-decoration: none;
border: none;
cursor: pointer;
font-size: 18px;
transition: background-color 0.3s;
}
.button:hover {
background-color: #45a049;
}
.dropdown{
background-color: #4CAF50;
width: 50%;
height: 100%;
}
.drop-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
font-size: x-small;
}
.drop-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown:hover .drop-content {display: block;}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<div class="overlay">
<h2>Welcome to GurfaceGG2</h2>
<p>This is a project developed by Gurface and Jordan to bring happiness and freedom to all</p>
<div class="button-container">
<button class="button" onclick="openInIframe('https://myrokoji.github.io/redacted4.github.io/')"><h3>MonkeyGG2 Clone</h3> <h4>by myrokoji</h4> </button>
<div class="button">
<button class="dropdown"><h3>Proxies and other games</h3> <h4>Select which proxy you would like:</h4>
<div class="drop-content" id="dropdown">
<a href onclick="openInIframe('https://shadow-ai.app')">Shadow</a>
<a href onclick="openInIframe('http://sandtar.dockl.com/')">Incognito</a>
<a href onclick="openInIframe('https://house.shirokuriwaki.com/')">Doge</a>
<a href onclick="openInIframe('https://scienceof.medscience.cl/')">Interstellar</a>
<a href onclick="openInIframe('https://think.sage.infovizija.com/')">Utopia</a>
<a href onclick="openInIframe('https://get-out-of-my-head-get-out-of-my-head.foxgateway.com/')">RammerHead</a>
</div>
</button>
</div>
<button class="button" onclick="openInIframe('https://myrokoji.github.io/wikipediaarchiver/archiver.html')">about:blank Embedder (if you wanna play specific websites in class that don't work on proxies. jchabin only works here)</button>
</div>
</div>
<script>
function openInIframe(url) {
const newWindow = window.open('about:blank', '_blank');
if (newWindow) {
newWindow.document.write(`
<!DOCTYPE html>
<html>
<head>
<title>My Drive - Google Drive</title>
<style>
body {
margin: 0;
padding: 0;
}
iframe {
width: 100%;
height: 100vh;
border: none;
}
</style>
</head>
<body>
<iframe src="${url}" frameborder="0"></iframe>
</body>
</html>
`);
newWindow.document.close();
} else {
alert('Failed to open new window. Please allow pop-ups in your browser.');
}
}
</script>
</body>
</html>