您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes unnecessary password autofills
// ==UserScript== // @name Bonk input field fix // @version 1.5 // @author Salama // @description Removes unnecessary password autofills // @match https://bonk.io/gameframe-release.html // @run-at document-end // @grant none // @supportURL https://discord.gg/Dj6usq7ww3 // @namespace https://gf.qytechs.cn/users/824888 // ==/UserScript== [...document.querySelectorAll("input[type=text]")].forEach(e => { if(!e.classList.contains("loginwindow_field")) { e.type="salama"; e.autocomplete="off"; } }); let elem = document.getElementById("passwordChangeContainer") elem.outerHTML = `<form id="passwordChangeContainer" class="windowShadow">${elem.innerHTML}</form>`; console.log("Unnecessary password autofills removed");
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址