NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name BugZilla fix
// @namespace http://www.dgnedoy.com
// @description Some little fix
// @include http://mt01/bugzilla/*
// @exclude %exclude%
// @version 1
// @grant none
// ==/UserScript==
var elems = document.querySelectorAll('.bz_bug_status_column > span');
for (var i = 0; i < elems.length; i++){
elems[i].innerHTML = elems[i].title;
}