HankLloydright / Unhide hidden sections on Actiontec WCB3000 web management page

// ==UserScript==
// @name         Unhide hidden sections on Actiontec WCB3000 web management page
// @namespace    http://tampermonkey.net/
// @version      1.0.2
// @description  Unhide hidden sections on Actiontec WCB3000 web management page. Shows hidden fields in bold blue text. 
// @require http://code.jquery.com/jquery-3.3.1.min.js
// @author       HankLloydRight
// @include        http://192.168.1.*
// @license  MIT
// @grant        none
// ==/UserScript==

var Target = $("#footer:contains('Actiontec')");

if (Target.length) {
	setTimeout(function(){
		$( "*:not(script):not(title):hidden" ).show().css("font-weight","bold").css("color","blue");
		$( "*:not(script):not(title):disabled" ).prop('disabled', false).css("font-weight","bold").css("color","green");;
	}, 400);
}