您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
使用MathJax在不受支持的浏览器上显示MathML内容
// ==UserScript== // @name MathML Polyfill // @name:zh-CN MathML兼容性改善 // @description Display MathML on unsupported browser, using MathJax // @description:zh-CN 使用MathJax在不受支持的浏览器上显示MathML内容 // @namespace https://gf.qytechs.cn/users/197529 // @version 1.0.0 // @author kkocdko // @license Unlicense // @match *://*/* // ==/UserScript== "use strict"; if (window.MathMLElement) { alert( "You don't need this user-script because the current browsers natively support MathML." ); } else if (document.querySelector("math")) { document.head.appendChild(document.createElement("script")).src = "https://cdn.jsdelivr.net/npm/[email protected]/es5/tex-mml-chtml.js"; }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址