New Userscript

try to take over the world!

目前为 2017-03-12 提交的版本。查看 最新版本

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        *://*/*
// @grant        none
// ==/UserScript==

window.onload=function(){
    var list=document.querySelectorAll("input[type=password]");
    for(var i=0;i<list.length;i++){
        (function(i){
            list[i].onmouseover=function(){
                list[i].setAttribute("type","text");
            };
            list[i].onmouseout=function(){
                list[i].setAttribute("type","password");
            };
        })(i);
    }
};

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址