Javascript modify HTML - Greasemonkey (part 2?)

I found this thread which is really close to what I need, but not quite. It has this code:


(function() {
  window.addEventListener("load", function(e) {
    document.body.innerHTML = document.body.innerHTML.replace(/<((?:b);)/g, '&$1');
  }, false);
})();

Which turns &lt; into < and &gt; into >. My problem is the opposite as I require < to be turned into < and > to be changed to > as the HTML code on the page (which I don’t control) is converting <b> and </b> tags into <b> and </b>

Is there a way to alter the above code so it makes these changes? It would be a huge help!

Thanks

str = str.replace(/\\&lt\\;b\\>/g,"<B>");
str = str.replace(/\\&lt\\;\\/b\\>/g,"</B>");

Got it :slight_smile: