// ==UserScript== // @name 查看密码 // @namespace http://tampermonkey.net/ // @version 0.0.1 // @description 鼠标悬浮在密码框,显示密码,移除恢复。 // @author Blazing // @include * // @require https://code.jquery.com/jquery-3.6.3.slim.min.js // @license MIT // @downloadURL none // ==/UserScript== (function () { $('input[type="password"]').hover(function(){ if($(this).attr('type') != 'text'){ $(this).attr('type', 'text'); } }).mouseleave(function(){ $(this).attr('type', 'password'); }); })();