// ==UserScript== // @name MathJaxChromeFix // @namespace myscripts // @version 1 // @description Fixe le problème de MathJax avec le rendu HTML-CSS dans Chrome // @author Amt. // @match http://www.les-mathematiques.net/phorum/* // @grant none // ==/UserScript== //See https://github.com/mathjax/MathJax/issues/1340 //and http://stackoverflow.com/a/707794 var sheet = window.document.styleSheets[0] sheet.insertRule('.MathJax>nobr>.math>:empty{border-left-color:transparent!important;}', sheet.cssRules.length);