see whats in the chests on gold quest
目前為
// ==UserScript==
// @name Chest Esp
// @namespace http://tampermonkey.net/
// @version 1
// @description see whats in the chests on gold quest
// @author You
// @match https://*.blooket.com/*
// @icon https://res.cloudinary.com/blooket/image/upload/v1613003832/Blooks/redAstronaut.svg
// @grant none
// @license MIT
// ==/UserScript==
(async()=>{
if (window.data) {
clearInterval(window.data);
window.data = null;
} else {
window.data = setInterval(function(){
Object.values(document.querySelector("body div[id] > div > div"))[1].children[0]._owner.stateNode.state.choices.forEach(function({text}, index){
var target = document.querySelector(`div[class^='styles__choice${index+1}']`);
if (target && !target.querySelector("div")) {
var newDiv = document.createElement("div");
newDiv.style.color = "white";
newDiv.style.fontFamily = "Eczar";
newDiv.style.fontSize = "2em";
newDiv.style.display = "flex";
newDiv.style.justifyContent = "center";
newDiv.style.transform = "translateY(200px)";
newDiv.innerText = text;
target.append(newDiv);
}
});
}, 50);
}
})();