Show/Hide Password Hover

Show/Hide Password when hovering over the input password

目前為 2023-10-29 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Show/Hide Password Hover
  3. // @version 1.2
  4. // @description Show/Hide Password when hovering over the input password
  5. // @match *://*/*
  6. // @grant none
  7. // @license MIT
  8. // @require https://code.jquery.com/jquery-3.7.1.min.js
  9. // @namespace https://greasyfork.org/users/821661
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. 'use strict';
  14.  
  15. $(document).on('mouseover', 'input[type="password"]', function (e) {
  16. console.log('slas');
  17. this.type = 'text';
  18. $(this).on('mouseleave', function () {
  19. this.type = 'password';
  20. });
  21. });
  22. })();