Disable MathJax Rendering

Disable MathJax rendering of LaTeX formulas

目前为 2025-02-14 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Disable MathJax Rendering
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Disable MathJax rendering of LaTeX formulas
  6. // @author You
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. // 禁用MathJax渲染
  14. if (window.MathJax) {
  15. window.MathJax.Hub.Config({
  16. tex2jax: {
  17. inlineMath: [],
  18. displayMath: []
  19. }
  20. });
  21. }
  22. })();