Greasy Fork

Greasy Fork is available in English.

Blooket Auto-Kick

Automatically kicks users on Blooket if you press their name, with no confirmation.

目前为 2023-06-22 提交的版本。查看 最新版本

// ==UserScript==
// @name         Blooket Auto-Kick
// @icon         https://i.imgur.com/HpETNJa.png
// @namespace    https://tampermonkey.net/
// @version      1.0
// @description  Automatically kicks users on Blooket if you press their name, with no confirmation.
// @author       Generic Human
// @license      Ask for permission in the Greasy Fork comments before copying.
// @match        https://*.blooket.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function autoKick() {
        var yesButton = document.querySelector('.styles__front___vcvuy-camelCase.styles__buttonInside___39vdp-camelCase');

        if (yesButton) {
            yesButton.click();
        }
    }

    setInterval(autoKick, 1);
})();