Skip to content

Instantly share code, notes, and snippets.

@luckyshot
Created February 21, 2013 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luckyshot/5005111 to your computer and use it in GitHub Desktop.
Save luckyshot/5005111 to your computer and use it in GitHub Desktop.
Google Analytics - Make full screen
document.getElementById('ID-headerPanel').style.display='none';
document.getElementById('ID-headerTabPanel').style.display='none';
document.getElementsByClassName('uI')[0].style.marginTop=0;
document.getElementById('ID-navToggle').click();
if (document.getElementsByClassName('ACTION-remove')[0]) {document.getElementsByClassName('ACTION-remove')[0].click();}
document.getElementById('ID-reportHeader-toolbarSection').style.display='none';
document.getElementById('ID-reportHeader-titleSection').style.display='none';
document.getElementsByClassName('NO')[0].style.display='none';
document.getElementsByTagName('body')[0].style.overflowX = 'hidden';
document.getElementsByTagName('body')[0].style.margin = '0 -15px 0 -35px';
/* Bookmarklet:
javascript:(function(){document.getElementById('ID-headerPanel').style.display='none';document.getElementById('ID-headerTabPanel').style.display='none';document.getElementsByClassName('uI')[0].style.marginTop=0;document.getElementById('ID-navToggle').click();if(document.getElementsByClassName('ACTION-remove')[0]){document.getElementsByClassName('ACTION-remove')[0].click();}document.getElementById('ID-reportHeader-toolbarSection').style.display='none';document.getElementById('ID-reportHeader-titleSection').style.display='none';document.getElementsByClassName('NO')[0].style.display='none';document.getElementsByTagName('body')[0].style.overflowX='hidden';document.getElementsByTagName('body')[0].style.margin='0 -15px 0 -35px';})();
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment