Created
June 2, 2020 01:01
-
-
Save roylez/8b55564fc9849d2cbfff88c742e6711a to your computer and use it in GitHub Desktop.
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 B525s-65a_show_DNS | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Show DNS settings on Optus Huawei B525s-65a | |
// @author You | |
// @match http://192.168.0.1/html/dhcp.html | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
$('#dhcp_dns_statistic').show(); | |
$('#dhcp_primary_dns').show(); | |
$('#dhcp_secondary_dns').show(); | |
// Your code here... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment