Bonk input field fix

Removes unnecessary password autofills

Ekde 2022/01/07. Vidu La ĝisdata versio.

// ==UserScript==
// @name         Bonk input field fix
// @version      1.0
// @author       Salama
// @description  Removes unnecessary password autofills
// @match        https://bonk.io/gameframe-release.html
// @run-at       document-start
// @grant        none
// @supportURL   https://discord.gg/Dj6usq7ww3
// @namespace https://greatest.deepsurf.us/users/824888
// ==/UserScript==

[...document.querySelectorAll("input[type=text]")].forEach(e => {
	if(!e.classList.contains("loginwindow_field")) {
		e.type="salama"
	}
})

console.log("Unnecessary password autofills removed");