// ==UserScript== // @name Kahoot scoreboard skip // @version 1 // @description Skip the kahoot scoreboard // @author codingMASTER398 // @match https://play.kahoot.it/v2/* // @namespace https://greasyfork.org/users/682906 // @downloadURL none // ==/UserScript== (function() { setInterval(function() { if(document.getElementsByClassName('kFPtaw animated-scoreboard__Button-sc-16j1vhw-9')[0]){ document.getElementsByClassName('kFPtaw animated-scoreboard__Button-sc-16j1vhw-9')[0].click(); } },1) })();