Last active
March 16, 2020 14:21
-
-
Save ewerybody/4d316284c0ff82637138f6bd069b14db to your computer and use it in GitHub Desktop.
The password field of my Wifi box is a simple text field! So the browser does not care about remembering what I enter. This turns its type into a password field, the text is hidden now and the browser cares about it. Nice ๐
This file contains 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 Unitimedia Wifi Login to password | |
// @version 1 | |
// @grant none | |
// @match http://192.168.0.1/common_page/login.html | |
// ==/UserScript== | |
var input_field = document.getElementById("loginPassword"); | |
input_field.setAttribute("type", "password"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment