你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/374093-kantibot,源站連結 點此以跳轉

KAntibot

Remove all bots from a kahoot game.


點此查看下載連結位址https://update.greasyfork.org.cn/scripts/374093/KAntibot.user.js

安装此脚本?
访问作者的支持站点提供反馈或发表评价,或举报此脚本
作者
theusaf
日安装量
0
总安装量
6,930
评分
7 1 3
版本
4.2.8
创建于
2018-11-08
更新于
2024-12-28
大小
63.8 KB
许可证
MIT
适用于

KAntibot

Buy Me a Coffee at ko-fi.com


INSTALLATION

  1. Make sure you have a script manager such as https://www.tampermonkey.net/
  2. Come back to this page and press the green install button.

  1. Your script manager should ask to install it. Press install.

  1. Open a kahoot game. The antibot should be installed if you see the antibot settings in the Kahoot! settings menu.

  1. Enjoy a bot-less game!

Features

               Join us!

Discord GitHub
Kahoot Hacker Icon Kahoot Hacker Icon

How to improve anti-botting:

Sometimes, just an antibot is not enough... Here are ways to prevent bots from joining your games to the best of your ability


Features planned:

Support for other play.kahoot.it scripts

KAntibot v4 works alongside other kahoot scripts normally, meaning you do not have to add your code to an array.

To detect if the antibot is active, you can check for the window.kantibotEnabled variable (v3.0.0+)

Retrieving Kahoot Internals

If you would like to make scripts that access various internals without interfering with KAntibot, you can use methods such as window.kantibotAddHook.

Example:

window.kantibotAddHook({
  prop: "example",
  condition: function (target, value) {
    return value === "test";
  },
  callback: function (target, value) {
    console.log("The object the property is put on is", target);
    console.log("The example property is set to", value);
    return true;
  },
});

Contributors and Sources