Last active
August 29, 2015 14:00
-
-
Save josuebasurto/6c746af35301139dba02 to your computer and use it in GitHub Desktop.
Script user for clean Ingress Intel. http://www.ingress.com/intel
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
| /* | |
| 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