Skip to content

Instantly share code, notes, and snippets.

@tkdn
Last active February 16, 2021 00:43
Show Gist options
  • Save tkdn/cad64d2e51daae9b5fdacbd62bfc8776 to your computer and use it in GitHub Desktop.
Save tkdn/cad64d2e51daae9b5fdacbd62bfc8776 to your computer and use it in GitHub Desktop.
textarea をリサイズさせないのはおかしいだろ
// ==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