Skip to content

Instantly share code, notes, and snippets.

@zjffun
Created January 19, 2022 08:58
Show Gist options
  • Save zjffun/88f991c8c962a8af7a7c65d0b0c20ebf to your computer and use it in GitHub Desktop.
Save zjffun/88f991c8c962a8af7a7c65d0b0c20ebf to your computer and use it in GitHub Desktop.
Show Password
// ==UserScript==
// @name Show Password
// @version 0.1
// @description Change the type of input to show password
// @match *://*/*
// @run-at context-menu
// ==/UserScript==
[...document.querySelectorAll('input[type="password"]')].forEach(el => {el.type = 'text'})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment