// ==UserScript== // @name 双击显示密码 // @namespace https://github.com/Tyrone2333/display-password // @version 1.0.1 // @description 双击显示密码,失去焦点隐藏 // @author en20 // @include http*://* // @exclude *baidu.com* // @grant none // @run-at document-end // @downloadURL none // ==/UserScript== window.onload = function () { let list = document.querySelectorAll("input[type=password]") for (let i = 0; i < list.length; i++) { list[i].ondblclick = function () { list[i].setAttribute("type", "text") } list[i].onblur = function () { list[i].setAttribute("type", "password") } } }