forked from Marc8019/bookmarklets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUltimate-unblocker.html
129 lines (107 loc) · 3.85 KB
/
Ultimate-unblocker.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
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Classes</title>
<link rel="icon" type="image/png" href="//ssl.gstatic.com/classroom/favicon.png">
<script>
function surfFreely() {
document.getElementById("c").innerHTML = "<iframe id=\"iframe\" src=\"https://phoenix-le.cf\"style=\" width=\"100%\" height=\"100%\";>"
}
function bing() {
document.getElementById("c").innerHTML = "<iframe onload=\"frameload()\" src=\"https://www.bing.com\" ;>"
}
function re() {
document.getElementById("c").innerHTML = "<div id=\"box\"><h2 id=\"contents\">Contents</h2><ul><li class=\"category\">Misc</li><li><span class=\"heading\">Inspect Element</li><span><span class=\"working\" class=\"bookmarklet\"> Working<span></ul></div>"
}
function home() {
document.getElementById("c").innerHTML = "<h1>Welcome to the Stealth Popup unblocker, made by marc#8019. The proxy feature should work on all platforms and security vendors (goguardian, iboss, etc) and it works with games. The bing-iframe embeds bing into the site."
}
function fullscreen() {
var x = document.getElementById("header");
if (x.style.display === "none") {
x.style.display = "inline-block";
document.getElementById("y").style.position = "static"
} else {
x.style.display = "none";
document.getElementById("y").style.position = "absolute"
document.getElementById("y").style.zIndex = "1"
}
}
</script>
<style>
html {
height: 100%;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
height:100%;
width:100%;
margin:0;
overflow: hidden;
background-color: #222831;
}
#c {
height:100%;
width:100%;
margin:0;
overflow: hidden;
}
iframe {
position: relative;
border: none;
margin-top: 10px;
width: 100%;
height: 100%;
background-color: #000000;
margin: 0;
} button {
outline:none;
width: auto;
height: auto;
color: #222;
opacity: .5;
transition: .3s;
display: inline-block;
border: none;
background-color: #00adb5;
font-size: 15px;
padding: 5px 1px 5px 4px;
}
button:hover {
opacity: 1;
}
#y {
display: inline-block;
padding: 5px 1px 5px 1px;
}
#header {
cursor:pointer !important;
display:inline-block;
margin: 0px;
padding: 0px;
}
form {
display:none;
width: auto;
color: #222;
} input {
border-style: 1px solid;
width: 95px;
}
</style>
</head>
<button id="y" onclick=fullscreen()>↓</button><!--
--><div id="header"><!--
--><button onclick="bing()">Bing Iframe</button><button onclick="surfFreely()">Surf Freely</button><button onclick="bookmarklets()">Bookmarklets</button><button onclick="home()">Home</button>
<form onsubmit="goToURL();">
<input type="url" >
</form>
</div>
<body>
<section id='c'>
</section>
</body>
</html>