Highlight Answers

View All The Correct Answers on Blooket

目前为 2023-07-31 提交的版本。查看 最新版本

// ==UserScript==
// @name         Highlight Answers
// @namespace    http://gf.qytechs.cn/
// @version      10
// @description  View All The Correct Answers on Blooket
// @author       You
// @match        https://*.blooket.com/*
// @icon         https://res.cloudinary.com/blooket/image/upload/v1613003832/Blooks/redAstronaut.svg
// @grant        none
// @license      MIT
// ==/UserScript==

setInterval(() => {
  const { state: o, props: t } = Object.values(document.querySelector('body div[class*="camelCase"]'))[1].children[0]._owner["stateNode"];
  [...document.querySelectorAll('[class*="answerContainer"]')].forEach((e, s) => {
    if ((o.question || t.client.question).correctAnswers.includes((o.question || t.client.question).answers[s])) {
      e.style.backgroundColor = "rgb(0, 207, 119)";
    } else {
      e.style.backgroundColor = "rgb(189, 15, 38)";
    }
  });
}, 150);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址