Last active
March 4, 2019 22:50
-
-
Save chriskirkland/0b7f1978b6cae62d20ed828696067119 to your computer and use it in GitHub Desktop.
more, instantly better github reviews
This file contains 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
# 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