Created
May 31, 2023 09:00
-
-
Save tiesmaster/023e93a596ffa3d9730d6eca48e87099 to your computer and use it in GitHub Desktop.
Make password field visible for donpardon.nl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Make password field visible | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://www.donpardon.nl/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=donpardon.nl | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| const passwordInput = document.getElementById("password") | |
| passwordInput.type = "text" | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment