Kahoot Antisettings

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

Bu scripti kur?
Yazarın tavsiye ettiği betik

Siz bunuda beğenebilirsiniz: Autokahoot.

Bu scripti kur

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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)

})