Created
November 14, 2017 13:09
-
-
Save matheusd/b20d3bf3dd95da693e643fd517b9b339 to your computer and use it in GitHub Desktop.
Improve Github PR inputs
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 is a bookmarklet to improve github's PR inputs (the PR title and PR comment) | |
// This adds a maxlength of 50 to the PR title and changes the comment to use a | |
// monospaced font. | |
// | |
// To use it, add a bookmark to your browser's bookmark bar and copy the following | |
// line as its content. | |
javascript:(function(){document.getElementById("pull_request_title").maxLength = 50; document.getElementById("pull_request_body").style.fontFamily = 'Mono' ; document.getElementById("pull_request_body").parentNode.style.backgroundColor = "#ffffc0" })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment