您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes unnecessary password autofills
当前为
// ==UserScript== // @name Bonk input field fix // @version 1.1 // @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://greasyforks.org/users/824888 // ==/UserScript== [...document.querySelectorAll("input[type=text]")].forEach(e => { if(!e.classList.contains("loginwindow_field")) { e.type="salama"; e.readonly = true; e.addEventListener("onclick", x => { e.readonly = false; }); } }); console.log("Unnecessary password autofills removed");