Skip to content

Instantly share code, notes, and snippets.

@dbanet
dbanet / forceOldMathJaxVersionOnMSE.user.js
Last active January 29, 2016 19:14
Force old MathJax version on MSE
// ==UserScript==
// @name Force old MathJax version on MSE
// @namespace https://gist.github.com/dbanet
// @description Please make sure you use AdBlock to blacklist ``*beta.mathjax.org/mathjax/latest/MathJax.js*''
// @include *math.stackexchange.com*
// ==/UserScript==
script=document.createElement("script");
script.src="//cdn.mathjax.org/mathjax/2.5-latest/MathJax.js?config=TeX-AMS_HTML-full";
document.head.appendChild(script);