Skip to content

Instantly share code, notes, and snippets.

@matheusd
Created November 14, 2017 13:09
Show Gist options
  • Save matheusd/b20d3bf3dd95da693e643fd517b9b339 to your computer and use it in GitHub Desktop.
Save matheusd/b20d3bf3dd95da693e643fd517b9b339 to your computer and use it in GitHub Desktop.
Improve Github PR inputs
// 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