Skip to content

Instantly share code, notes, and snippets.

@dallasread
Last active November 6, 2023 13:55
Show Gist options
  • Save dallasread/eeb0a20121056fa9553d1fd8eb558e48 to your computer and use it in GitHub Desktop.
Save dallasread/eeb0a20121056fa9553d1fd8eb558e48 to your computer and use it in GitHub Desktop.
Fullscreen Textarea
// ==UserScript==
// @name Big-Enough Text Area
// @version 4
// @grant none
// @match https://github.com/*
// ==/UserScript==
(function () {
document.body.innerHTML += `
<style>
.Overlay.Overlay--size-auto {max-height: none;}
.CommentBox .CommentBox-input {height: 30vh}
</style>
`
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment