Kahoot scoreboard skip

Skip the kahoot scoreboard

目前为 2021-02-14 提交的版本。查看 最新版本

// ==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
// ==/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)
})();