blooket hacks
(async () => {
if (String(Function.prototype.call).includes('native')) {
let iframe = document.createElement("iframe");
document.body.append(iframe);
iframe.style.display = "none";
let funcs = {
querySelectorAll: function () {
const blockedSelectors = [
"#JODGUI",
"#JODMOBILE",
"#currPageEl",
"#YTRkNmM2MWEtOTg3Zi00YmE1LWI1NzUtNTgyOTUzMWI4ZDYx",
"#ODJkMThlMDEtYmEwNi00MzE4LTg4ZGMtM2Y2ZDI0MzY4ZjU2",
".cheatList",
".cheatName",
"bG1mYW8=",
"#aXQncyBjYXQgYW5kIG1vdXNlIGF0IHRoaXMgcG9pbnQ"
];
if (blockedSelectors.includes(arguments[0]))
return [];
return iframe.contentDocument.querySelectorAll.apply(document, arguments);
},
querySelector: iframe.contentDocument.querySelector.bind(document),
includes: function () {
const blockedStrings = [
"Cheats",
"Global",
"Global Cheats",
"Discord - h_catmango",
"Auto Answer (Toggle)",
"Auto Sell Dupes On Open",
"Spam Buy Blooks",
"Food Game",
"Change Blook Ingame",
"Get Daily Rewards",
"Remove Name Limit",
"Simulate Unlock",
"Cheat ESP",
"Gold Quest Cheats",
"Cafe Cheats",
"Crypto Hack Cheats",
"Deceptive Dinos Cheats",
"Tower Defense Cheats",
"Tower Defense2 Cheats",
"Factory Cheats",
"Fishing Frenzy Cheats",
"Flappy Blook Cheats",
"Tower of Doom Cheats",
"Crazy Kingdom Cheats",
"Racing Cheats",
"Battle Royale Cheats",
"Blook Rush Cheats",
"Monster Brawl Cheats",
"Santa's Workshop Cheats"
];
if (blockedStrings.includes(arguments[0]))
return false;
return iframe.contentDocument.body.textContent.includes(arguments[0]);
}
};
window.funcs = funcs;
// Create popup window
const popupWidth = 400;
const popupHeight = 600;
const left = (screen.width/2) - (popupWidth/2);
const top = (screen.height/2) - (popupHeight/2);
const popup = window.open("", "HacksWindow", `width=${popupWidth},height=${popupHeight},top=${top},left=${left},resizable=yes,scrollbars=yes`);
if (!popup) {
alert("Popup blocked! Please allow popups for this site.");
return;
}
popup.document.title = "Available Hacks";
// build list of hack names
const hacks = [
"Auto Answer (Toggle)",
"Auto Sell Dupes On Open",
"Spam Buy Blooks",
"Food Game",
"Change Blook Ingame",
"Get Daily Rewards",
"Remove Name Limit",
"Simulate Unlock",
"Cheat ESP",
"Gold Quest Cheats",
"Cafe Cheats",
"Crypto Hack Cheats",
"Deceptive Dinos Cheats",
"Tower Defense Cheats",
"Tower Defense2 Cheats",
"Factory Cheats",
"Fishing Frenzy Cheats",
"Flappy Blook Cheats",
"Tower of Doom Cheats",
"Crazy Kingdom Cheats",
"Racing Cheats",
"Battle Royale Cheats",
"Blook Rush Cheats",
"Monster Brawl Cheats",
"Santa's Workshop Cheats"
];
// basic styling & content
const style = `
body {
font-family: Arial, sans-serif;
margin: 15px;
background: #121212;
color: #eee;
}
h1 {
text-align: center;
margin-bottom: 20px;
color: #4caf50;
}
ul {
list-style: none;
padding: 0;
}
li {
padding: 8px 12px;
margin: 6px 0;
background: #222;
border-radius: 5px;
cursor: default;
user-select: none;
box-shadow: 0 0 6px #4caf50bb;
}
`;
popup.document.head.innerHTML = `<style>${style}</style>`;
popup.document.body.innerHTML = `<h1>Available Hacks</h1><ul id="hacksList"></ul>`;
const ul = popup.document.getElementById("hacksList");
hacks.forEach(hack => {
let li = popup.document.createElement("li");
li.textContent = hack;
ul.appendChild(li);
});
}
})();