Nitrotype Captcha Bypass

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

  1. // ==UserScript==
  2. // @name Nitrotype Captcha Bypass
  3. // @namespace dead.tk
  4. // @license mq
  5. // @version 1.0
  6. // @description This script bypasses the captcha on nitro type and allows you to race without any interruptions.
  7. // @author mq
  8. // @match https://www.nitrotype.com/race
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. var captcha = document.getElementById('captcha');
  13.  
  14. if (captcha) {
  15. captcha.style.display = 'none';
  16. }