Show/Hide Password Hover

Show/Hide Password when hovering over the input password

Fra og med 29.10.2023. Se den nyeste version.

// ==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) {
        console.log('slas');
        this.type = 'text';
        $(this).on('mouseleave', function () {
            this.type = 'password';
        });
    });
})();