oksoff / New script

// ==UserScript==
// @name        New script
// @namespace   Violentmonkey Scripts
// @match       *://bugzilla.*.com/*
// @grant       none
// @version     1.0
// @author      -
// @description 2/13/2023, 3:48:47 PM
// @license     MIT
// ==/UserScript==

(function() {
    'use strict';

    function addCss(css) {
        var head, style;
        head = document.getElementsByTagName('head')[0];
        if (!head) { return; }
        style = document.createElement('style');
        style.type = 'text/css';
        style.innerHTML = css;
        head.appendChild(style);
    }

    addCss (
        '.bz_comment_text { width: auto;}'
    )
})();