Kahoot Antisettings

Hide some kahoot settings for streams, to make it look less crowded and bloated.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Kahoot Antisettings
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hide some kahoot settings for streams, to make it look less crowded and bloated.
// @author       codingMASTER398
// @run-at       document-start
// @match        *://play.kahoot.it/v2*
// @icon         https://www.google.com/s2/favicons?domain=kahoot.it
// @grant        none
// ==/UserScript==

window.antibotAdditionalScripts = window.antibotAdditionalScripts || [];
window.antibotAdditionalScripts.push(()=>{
    window.toInsert = document.createElement("div");
    window.toInsert.innerHTML = "Antisettings enabled"; //PLEASE DONT CHANGE, THIS IS MY ONLY FORM OF CREDIT ):
    window.toInsert.style.color = 'white'
    window.toInsert.style.position = "absolute";
    window.toInsert.style.top = "0px";
    window.toInsert.style.textAlign = "center";
    window.toInsert.style.width = "100%";
    document.body.appendChild(window.toInsert);

    console.log("[HIDE KAHOOT SETTINGS] running")
    var toremove = ["eIeXcV","kouOMd","cuthTl"/* Pre-intermission settings */,"kyCxrl","juDgty","dFwDYV","dJJRyE"/* Intermission settings + Kahoot logo */,"bqJUnj","korJUI","hmxNjP"/* Settings on question */]
    setInterval(function(){
        for (i = 0; i < toremove.length; i++) {
            if(document.getElementsByClassName(toremove[i])[0]){
                document.getElementsByClassName(toremove[i])[0].innerHTML = ""
            }
        }
    },500)

})