Greasy Fork is available in English.
Remove all bots from a kahoot game.
This script uses a "Levenshtein distance" formula to determine similarity, taken from Stackoverflow.com
Discord | GitHub |
---|---|
![]() | ![]() |
Sometimes, just an antibot is not enough... Here are ways to prevent bots from joining your games to the best of your ability
If you are creating your own play.kahoot.it scripts, it will not work with Kahoot Antibot normally. You need to do the following:
document-start
window.antibotAdditionalScripts
to []
// @grant none
// @run-at document-start
// ==/UserScript==
window.antibotAdditionalScripts = window.antibotAdditionalScripts || [];
window.antibotAdditionalScripts.push(()=>{
// code to run
});