Greasy Fork is available in English.
try to take over the world!
当前为
// ==UserScript==
// @name 双击显示密码脚本
// @namespace http://xhunter.org
// @version 0.1
// @description try to take over the world!
// @author You
// @include http*://*
// @exclude http*://*baidu.com*
// @require http://cdn.bootcss.com/jquery/2.2.4/jquery.min.js
// @grant none
// ==/UserScript==
(function() {
if ($(":password").length > 0) {
$(":password").dblclick(function() {
$(this).attr("type", "text");
});
$(":password").click(function() {
$(this).attr("type", "password");
});
$(":password").blur(function() {
$(this).attr("type", "password");
});
}
})();