Chest Esp

see whats in the chests on gold quest

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Chest Esp
// @namespace    http://tampermonkey.net/
// @version      3
// @description  see whats in the chests on gold quest
// @author       You
// @match        https://*.blooket.com/*
// @exclude      https://play.blooket.com/play
// @icon         https://res.cloudinary.com/blooket/image/upload/v1613003832/Blooks/redAstronaut.svg
// @grant        none
// @license      MIT
// ==/UserScript==

async function executeScript() {
  var e = Object.values(document.querySelector('body div[class*="camelCase"]'))[1].children[0]._owner["stateNode"];

  e.state.choices.forEach(({ text: e }, t) => {
    var s, t = document.querySelector(`div[class^='styles__choice${t+1}']`);

    if (t && !t.querySelector("div")) {
      s = document.createElement("div");
      s.style.color = "white";
      s.style.fontFamily = "Eczar";
      s.style.fontSize = "2em";
      s.style.display = "flex";
      s.style.justifyContent = "center";
      s.style.transform = "translateY(200px)";
      s.innerText = e;
      t.append(s);
    }
  });
}

setInterval(executeScript, 100);