Remove Kahoot Log In Pop Up

Hide kahoot log in pop up

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Remove Kahoot Log In Pop Up
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Hide kahoot log in pop up
// @author       doggolive
// @match        *://play.kahoot.it/*
// @exclude      *://play.kahoot.it/v2/assets/*
// @icon        
// @grant        none

// ==/UserScript==

// ---------------------------------------------------------
// script settings
//-----------------------------------------------------------
// check for log in screen
window.parent.kahootloginscreen = true
// 

setInterval(() => {
    var kahootloginscreen = document.querySelector("#root > div.app__AppWrapper-sc-8krux4-0.hcCgdU > div > div:nth-child(3) > div")
    if (kahootloginscreen && window.parent.kahootloginscreen === true) {kahootloginscreen.remove();console.log("Kahoot Log In Screen Hidden")}
})