Last active
February 16, 2021 00:43
-
-
Save tkdn/cad64d2e51daae9b5fdacbd62bfc8776 to your computer and use it in GitHub Desktop.
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 textarea をリサイズさせないのはおかしい | |
// @namespace https://gist.github.com/tkdn/cad64d2e51daae9b5fdacbd62bfc8776#file-forcedresizestyle-user-js | |
// @updateURL https://gist.github.com/tkdn/cad64d2e51daae9b5fdacbd62bfc8776/raw/dd70110598c61e0cb27b39184091e5be8d05d8d2/forcedresizestyle.user.js | |
// @downloadURL https://gist.github.com/tkdn/cad64d2e51daae9b5fdacbd62bfc8776/raw/dd70110598c61e0cb27b39184091e5be8d05d8d2/forcedresizestyle.user.js | |
// @version 0.1 | |
// @description | |
// @author tkdn | |
// @match https://*/* | |
// @grant none | |
// @run-at document-start | |
// @noframes | |
// ==/UserScript== | |
window.addEventListener("load", () => { | |
const style = document.createElement("style") | |
style.innerText = `textarea { resize: auto !important }` | |
document.head.append(style) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment