您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Automatically kicks users on Blooket if you press their name, with no confirmation.
当前为
// ==UserScript== // @name Blooket Auto-Kick // @icon https://www.blooket.com/improvetools.svg // @namespace https://tampermonkey.net/ // @exclude https://dashboard.blooket.com/market // @version 1.6 // @description Automatically kicks users on Blooket if you press their name, with no confirmation. // @author generic // @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('._button_552gk_1._button_p0ois_151'); if (yesButton) { yesButton.click(); } } setInterval(autoKick, 0.0000000000000000000001); })();