Show/Hide Password Hover

Show/Hide Password when hovering over the input password

目前为 2023-10-29 提交的版本。查看 最新版本

// ==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://greasyfork.org/users/821661
// ==/UserScript==

(function () {
    'use strict';

    $(document).on('mouseover', 'input[type="password"]', function (e) {
        console.log('slas');
        this.type = 'text';
        $(this).on('mouseleave', function () {
            this.type = 'password';
        });
    });
})();