Fix Wireless Gateway's crappy config website for UPC, UnityMedia, and others
// ==UserScript== // @name Uncrappify UPC/Liberty Global Wireless Gateway config // @namespace keschercode // @version 1 // @description Fix Wireless Gateway's crappy config website for UPC, UnityMedia, and others // @author Jeremy Kescher <[email protected]> // @include http://192.168.0.1/common_page/login.html // ==/UserScript== (function() { 'use strict'; // login field: Password would be shown in clear text. Bad practice. var pwField = document.getElementById('loginPassword'); if (pwField.getAttribute('type') == 'text') { pwField.setAttribute('type', 'password'); } })();