Skip to content

Instantly share code, notes, and snippets.

@TheNicholasNick
Last active April 3, 2018 04:34
Show Gist options
  • Save TheNicholasNick/391a2469853afa1c9d7110720efb335b to your computer and use it in GitHub Desktop.
Save TheNicholasNick/391a2469853afa1c9d7110720efb335b to your computer and use it in GitHub Desktop.
User script for showing Digital Ocean graphs minus the noise

User JavaScript and CSS can be got from here https://chrome.google.com/webstore/detail/user-javascript-and-css/nbhcbdghjpllgmfilhnhkllmkecfmpld

Open as Popup can be got from here https://chrome.google.com/webstore/detail/open-as-popup/ncppfjladdkdaemaghochfikpmghbcpc

AquaSnap can be got from here https://www.nurgo-software.com/products/aquasnap

Super AutoRefresh can be got from here https://chrome.google.com/webstore/detail/super-auto-refresh/kkhjakkgopekjlempoplnjclgedabddk

on a 4k res screen at 100% to fit 8, need to zoom out a little bit (ctrl + - once or 90%) I couldn't figure out how to get rid of the margins to keep it all centred...

Could probably do this far more effeciently in a dashboard tool, however that would take even longer to setup.

Screenshots 1x Droplet 110%

8x Droplets 90%

// https://cloud.digitalocean.com/droplets/*/graphs*
setTimeout(function() {
$('.nav-bar-v2:first').css("height", "0");
$('.nav_controls_v2:first').css("display", "none");
$('.networking-row:first').css("display", "none");
$('.small-2.columns').css("display", "none");
$('.row').css("width","835px");
$('.small-10.columns').addClass("small-12").removeClass("small-10");
$('.Footer').css("display", "none");
$('#aurora-container').css("padding-bottom","0");
$('html').css("overflow", "hidden");
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment