Last active
November 6, 2023 13:55
-
-
Save dallasread/eeb0a20121056fa9553d1fd8eb558e48 to your computer and use it in GitHub Desktop.
Fullscreen Textarea
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
// ==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