Show/Hide Password when hovering over the input password
当前为
// ==UserScript==
// @name Show/Hide Password Hover
// @version 1.2
// @description Show/Hide Password when hovering over the input password
// @match *://*/*
// @grant none
// @license MIT
// @require https://code.jquery.com/jquery-3.7.1.min.js
// @namespace https://greatest.deepsurf.us/users/821661
// ==/UserScript==
(function () {
'use strict';
$(document).on('mouseover', 'input[type="password"]', function (e) {
this.type = 'text';
$(this).on('mouseleave', function () {
this.type = 'password';
});
});
})();