Fuck Passwords

this script will always display the passwords

  1. // ==UserScript==
  2. // @license JazzMedo
  3. // @name Fuck Passwords
  4. // @version 1.0
  5. // @description this script will always display the passwords
  6. // @author JazzMedo
  7. // @match *
  8. // @include *
  9. // @icon https://icons.veryicon.com/png/o/miscellaneous/remitting-country-linear-icon/password-148.png
  10. // @grant none
  11. // @namespace https://gf.qytechs.cn/users/1420266
  12. // ==/UserScript==
  13.  
  14. (function () {
  15. 'use strict';
  16. var passwds = document.querySelectorAll('input[type="password"]')
  17. passwds.forEach(passwd => {
  18. passwd.removeAttribute("type", "")
  19. })
  20. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址