Skip to content

Instantly share code, notes, and snippets.

@roylez
Created June 2, 2020 01:01
Show Gist options
  • Save roylez/8b55564fc9849d2cbfff88c742e6711a to your computer and use it in GitHub Desktop.
Save roylez/8b55564fc9849d2cbfff88c742e6711a to your computer and use it in GitHub Desktop.
// ==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