Code Golf text area resize

Code golf text area increase

// ==UserScript==
// @name         Code Golf text area resize
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Code golf text area increase
// @author       You
// @match        https://code.golf/*
// @icon         https://code.golf/icon.svg
// @grant        none
// @license      Boost
// ==/UserScript==

(function() {
    'use strict';

    var editorDiv = document.getElementById("editor");
    editorDiv.style.height = null;
    editorDiv.style.resize = "both";
})();