Kahoot Antisettings

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

安裝腳本?
作者推薦腳本

您可能也會喜歡 Autokahoot

安裝腳本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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)

})