I won "The Password Game" on neal.fun
On November 18, 2024, I won "The Password Game" on neal.fun. In this game, you have to choose a password with stricter and stricter requirements, like having the name of a country, the best chess move, the Wordle answer of the day, a YouTube video with a certain duration, and so on. I was able to complete all the levels and win the game.

Useful scripts
Get a CAPTCHA with only letters:
var i = setInterval(() => {var m = $(".captcha-img").src.match(/\/([a-z]+)\.png/); if(m) clearInterval(i), console.log(m[1]); else $(".captcha-refresh").click()}, 50);
Get the map solution:
$("iframe.geo").src
and search the URL in the source code.
Get the chess solution:
chess = [{sol:...}] // Get this in the source code
chess[$(".chess-img").src.match(/\/puzzle(\d+)\.svg/)[1]].sol
Get a color that only has letters in it:
var i = setInterval(() => {var m = $(".rand-color").style.backgroundColor.match(/rgb\((\d+), (\d+), (\d+)\)/), r = (+m[1]).toString(16).padStart(2, 0), g = (+m[2]).toString(16).padStart(2, 0), b = (+m[3]).toString(16).padStart(2, 0); if(!r.match(/\d/) && !g.match(/\d/) && !b.match(/\d/)) clearInterval(i), console.log(r + g + b); else $(".rand-color .refresh").click()}, 50);
UPDATE: Script for Stimulation Clicker
To change your stimulation:
$nuxt.$root.$children[1].$children[0].$children[0]._data.stimulation = 1e30;