NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name ShowBuildName
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Fixes problem with long build names on master
// @author Magnus HÃ¥kansson
// @match *://*/job/*/job/*/
// @match *://*/*/job/*/job/*/
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js
// @run-at document-end
// @grant none
// @copyright 2021, magnushakansson (https://openuserjs.org/users/magnushakansson)
// @license MIT
// ==/UserScript==
jQuery(document).ready(function(){
jQuery.noConflict();
jQuery("[class='pane build-name']").each(function(index, element) {
jQuery(element).css("width", "75%");
});
});