Skip to content

Instantly share code, notes, and snippets.

@josuebasurto
Last active August 29, 2015 14:00
Show Gist options
  • Select an option

  • Save josuebasurto/6c746af35301139dba02 to your computer and use it in GitHub Desktop.

Select an option

Save josuebasurto/6c746af35301139dba02 to your computer and use it in GitHub Desktop.
Script user for clean Ingress Intel. http://www.ingress.com/intel
/*
This script is made by @JosueBasurto | [#JoshB]
I'm not responsible for any use of this script.
This script is given as is.
You can use it, modify it and change it for any purpose.
*/
//Hides controls that are not useful for screenshots
["player_stats","header","game_stats","geotools","comm","bottom_right_stack","portal_filter_header","footer","butterbar"].forEach(
function(e){
if(e != null)
document.getElementById(e).style.display = 'none';
}
);
//Maximizes content
var dash = document.getElementById('dashboard_container');
dash.style.top = dash.style.left = dash.style.right = dash.style.bottom = 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment