Skip to content

Instantly share code, notes, and snippets.

@chriskirkland
Last active March 4, 2019 22:50
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 chriskirkland/0b7f1978b6cae62d20ed828696067119 to your computer and use it in GitHub Desktop.
Save chriskirkland/0b7f1978b6cae62d20ed828696067119 to your computer and use it in GitHub Desktop.
more, instantly better github reviews
# For use with chrome extension JavaScript Injector
# pattern: https://github.*/*/*/pull/*/files
var divs = document.getElementsByClassName("container new-discussion-timeline experiment-repo-nav")
for (let i = 0; i < divs.length; i++) {
divs[i].style.width = 'auto';
divs[i].style.marginLeft = '25px';
divs[i].style.marginRight = '25px';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment