removes kahoot notifications (hide annoying player limit)
// ==UserScript==
// @name anti kahoot notifications
// @version 1.0
// @description removes kahoot notifications (hide annoying player limit)
// @author epicmines33
// @match *://play.kahoot.it/*
// @exclude *://play.kahoot.it/v2/assets/*
// @grant none
// @run-at document-start
// @namespace https://greasyfork.org/users/292729
// ==/UserScript==
setInterval(() => {
var closeButton = document.querySelector(`[data-functional-selector="notification-bar-close-button"]`)
if (closeButton) {closeButton.click()}
}, 1000)