MathJax.showMathMenu
当前为
// ==UserScript==
// @name 知乎公式MathJax
// @version 0.0.1
// @description MathJax.showMathMenu
// @icon https://static.zhihu.com/favicon.ico
// @author You
// @namespace http://tampermonkey.net/
// @license MIT
// @match https://*.zhihu.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
let __MathJax;
Object.defineProperty(window, 'MathJax', {
get() {
return __MathJax;
},
set(m) {
__MathJax = m;
__MathJax.showMathMenu = true;
}
});