Nitrotype Captcha Bypass

This script bypasses the captcha on nitro type and allows you to race without any interruptions.

目前為 2023-03-16 提交的版本,檢視 最新版本

// ==UserScript==
// @name Nitrotype Captcha Bypass
// @namespace dead.tk
// @license mq
// @version 1.0
// @description This script bypasses the captcha on nitro type and allows you to race without any interruptions.
// @author mq
// @match https://www.nitrotype.com/race
// @grant none
// ==/UserScript==

var captcha = document.getElementById('captcha');

if (captcha) {
captcha.style.display = 'none';
}