-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbookmarklets.html
63 lines (59 loc) · 3.61 KB
/
bookmarklets.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
<!DOCTYPE html>
<html><head>
<div class="locbar" style="height: 70px; background-color: #000000; display: flex; justify-content: center; align-items: center; padding-left: 20px; padding-right: 20px;">
<a href="#" onclick="window.location.href='/bookmarklets.html'" style="padding: 20px 30px; margin-right: 10px;">Bookmarklets</a>
<a href="#" onclick="window.location.href='/settings.html'" style="padding: 20px 30px; margin-right: 10px;">Settings</a>
<a href="#" onclick="window.location.href='/requestgame.html'" style="padding: 20px 30px;">Game Request</a>
<a href="#" onclick="window.location.href='/surffreely.html'" style="padding: 20px 30px; margin-left: 10px;">Surf The Web</a>
<a href="#" onclick="window.location.href='/projects.html'" style="padding: 20px 30px; margin-left: 10px;">Home</a>
</div>
<script>
window.onload = function() {
var savedTheme = localStorage.getItem('theme');
if (savedTheme) {
document.body.style.backgroundColor = savedTheme;
var locbar = document.getElementsByClassName('locbar')[0];
if (locbar) {
locbar.style.backgroundColor = savedTheme;
}
}
if (window.location.href.indexOf("projects.html") > -1) {
var savedTheme = localStorage.getItem('theme');
if (savedTheme) {
document.body.style.backgroundColor = savedTheme;
var locbar = document.getElementsByClassName('locbar')[0];
if (locbar) {
locbar.style.backgroundColor = savedTheme;
}
}
}
}
function setTheme(color) {
localStorage.setItem('theme', color);
document.body.style.backgroundColor = color;
var locbar = document.getElementsByClassName('locbar')[0];
if (locbar) {
locbar.style.backgroundColor = color;
}
if (window.location.href.indexOf("projects.html") > -1) {
localStorage.setItem('theme', color);
document.body.style.backgroundColor = color;
var locbar = document.getElementsByClassName('locbar')[0];
if (locbar) {
locbar.style.backgroundColor = color;
}
}
}
</script>
<title> Bookmarklets </title>
<link rel="shortcut icon" type="image/png" href="IMG/logo.png">
<link rel="icon" type="image/png" href="IMG/logo.png">
<link rel='stylesheet' href='/CSS/bookmarklets.style.css' />
<h1> Welcome to the world of bookmarklet exploits. you can drag these to bookmarks bar.</h1>
<script>alert("KillCurly is made by some people mosty not me its modified cookie dough. bim-bot is mostly made by me but flowings also did that. the rest are not by me in any way")</script>
<div class="button">KillCurly<a href="javascript:fetch('https://raw.githubusercontent.com/zek-c/Securly-Kill-V111/main/kill.js').then(r => r.text()).then(r => eval(r))" class="button-text">KillCurly</a></div>
<div class="button">BIM-BOT<a href="javascript:fetch('https://res.cloudinary.com/dxttxbdrd/raw/upload/v1681341057/bim-botV2.0_yffn6y.js').then(r => r.text()).then(r => eval(r))" class="button-text">BIM-BOT</a></div>
<div class="button">EdPuzzle<a href="javascript: fetch('https://cdn.jsdelivr.net/gh/ading2210/edpuzzle-answers@latest/script.js').then(r => r.text()).then(r => eval(r))" class="button-text">EdPuzzle</a></div>
<div class="button">YouTube Unblockr<a href='javascript:var a="https://www.youtube-nocookie.com";var b=location.search.split("v=")[1].split("&")[0];if(location.hostname==="www.youtube.com"){location.assign(a+"/embed/"+b);}else{alert("not on youtube");}' class="button-text">YouTube Unblockr</a></div>
<div class="button">OverTurn<a href="javascript: fetch('https://raw.githubusercontent.com/zek-c/overturn-src/main/overturn.js').then(r => r.text()).then(r => eval(r))" class="button-text">OverTurn</a></div>
</body></html>