您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Shows password on mouseOver and focus, hides on mouseOut and blur
- // ==UserScript==
- // @name zShowPass
- // @namespace zLiquidMethod
- // @version 0.7
- // @description Shows password on mouseOver and focus, hides on mouseOut and blur
- // @include *
- // @grant none
- // @copyright Dustin Zappa 2014
- // @grant none
- // ==/UserScript==
- //////////////////////////////////////////////////////////////////////////////
- // functions
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- // Name: clearText
- // Abstract:
- //////////////////////////////////////////////////////////////////////////////
- function clearText() {
- this.type = "text";
- }
- //////////////////////////////////////////////////////////////////////////////
- // Name: obscureText
- // Abstract:
- //////////////////////////////////////////////////////////////////////////////
- function obscureText() {
- this.type = "password";
- }
- //////////////////////////////////////////////////////////////////////////////
- // Name: addEvents
- // Abstract:
- //////////////////////////////////////////////////////////////////////////////
- function addEvents() {
- var passFields = document.querySelectorAll("input[type='password']");
- if (!passFields.length) {
- return;
- }
- for (var i = 0; i < passFields.length; i++) {
- passFields[i].addEventListener("mouseover", clearText, false);
- passFields[i].addEventListener("focus", clearText, false);
- passFields[i].addEventListener("mouseout", obscureText, false);
- passFields[i].addEventListener("blur", obscureText, false);
- }
- }
- //////////////////////////////////////////////////////////////////////////////
- // events
- //////////////////////////////////////////////////////////////////////////////
- // execute after load, just in case they generate password fields via javascript
- window.addEventListener("load", addEvents, false);