marcin348gmail.com / Force Linaro bugzilla comment to resize

// ==UserScript==
// @name         Force Linaro bugzilla comment to resize
// @namespace    http://tampermonkey.net/
// @version      20170808.1
// @description  Make bug comments resize automatically for readability
// @author       Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
// @match        https://bugs.linaro.org/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    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 !important;}'
    )
})();