Skip to content

Instantly share code, notes, and snippets.

@tiesmaster
Created May 31, 2023 09:00
Show Gist options
  • Select an option

  • Save tiesmaster/023e93a596ffa3d9730d6eca48e87099 to your computer and use it in GitHub Desktop.

Select an option

Save tiesmaster/023e93a596ffa3d9730d6eca48e87099 to your computer and use it in GitHub Desktop.
Make password field visible for donpardon.nl
// ==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