您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
2019/12/11 上午12:26:27
当前为
// ==UserScript== // @name 显示密码 // @namespace Violentmonkey Scripts // @match *://*/* // @grant none // @version 1.0 // @author yaohunzhanyue // @description 2019/12/11 上午12:26:27 // ==/UserScript== show_pw(); function show_pw() { 'use strict'; var e, t; e = document.getElementsByTagName("input"); for (var a = 0; a < e.length; a++) if (t = e[a], "password" == t.type.toLowerCase()) try { t.type = "text" } catch (e) { var r, n; r = document.createElement("input"), n = t.attributes; for (var o = 0; o < n.length; o++) { var i, c, d; i = n[o], c = i.nodeName, d = i.nodeValue, "type" != c.toLowerCase() && "height" != c && "width" != c & !!d && (r[c] = d) } t.parentNode.replaceChild(r, t) } }