Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// Adds a link for the revision history to the V.T.E links (navbar) of navboxes
var nvbr = document.getElementsByClassName("navbar");
for (i=0; i<Math.min(nvbr.length,500); i++) {
  var list = nvbr[i].getElementsByTagName("ul")[0];
  var hist = document.createElement("li");
  hist.className = "nv-hist";
  hist.innerHTML = list.getElementsByTagName("li")[2].innerHTML.replace(/(<a.*action=)edit("><(abbr|span) title=")Edit(.*>)e(<\/\3.*)/,"$1history$2History of$4h$5");
  list.appendChild(hist);
}