Skip to content

Instantly share code, notes, and snippets.

@mhuckaby
Created September 5, 2019 19:34
Show Gist options
  • Save mhuckaby/9a6dc5a2fad55da84897dbf5ed0b5cf7 to your computer and use it in GitHub Desktop.
Save mhuckaby/9a6dc5a2fad55da84897dbf5ed0b5cf7 to your computer and use it in GitHub Desktop.
JS-Snippet - AWS Documentation - Expand Content Column (Kill Left Navigation Column)
##
## Add as a `Snippet` to Chrome and use to expand the content column of AWS Documentation pages
## https://developers.google.com/web/tools/chrome-devtools/javascript/snippets
##
## OPT+CMD+I
## CMD+SHIFT+P
## ! [ENTER]
##
$('#left-column').remove();
$('#main-column').attr('style', 'margin-left:0px;');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment