您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
auto full username password login
当前为
// ==UserScript== // @name enable autofill // @namespace http://tampermonkey.net/ // @version 2024-03-01 // @description auto full username password login // @author You // @grant none // @match http://asp.asp.asp // @license MIT // ==/UserScript== (function() { 'use strict'; function deal(){ var newValue="" var el1s = document.querySelectorAll('input[autocomplete="off"]'); // 遍历所有找到的元素并移除autocomplete属性 el1s.forEach(function(element) { element.removeAttribute('autocomplete'); }); var form = document.getElementById('signupForm'); var el3 = document.getElementById('password1'); form.insertBefore(el3, form.children[2]); if (el3) { el3.type = 'password'; el3.id = 'password2'; el3.value="" } var el2 = document.getElementById('password_orig'); if (el2) { el2.style.width = '1px'; el2.style.height = '1px'; el2.value = "123" el2.style.display="none"; } var el4 = document.getElementsByClassName('fa-lock')[0]; if(el4){ el4.style.display="none"; } } setTimeout(deal,100); // Your code here... })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址