Fix the issue of mathematical expressions displaying as "Math input error"
// ==UserScript==
// @name Fix AP Classroom Math Input Error
// @namespace Violentmonkey Scripts
// @match *://apclassroom.collegeboard.org/*
// @grant none
// @version 1.1
// @author CyrilSLi
// @description Fix the issue of mathematical expressions displaying as "Math input error"
// @license MIT
// ==/UserScript==
window.MathJax = {
version: "3.2.2",
typesetPromise: () => {}
};
document.body.appendChild(document.createElement("style")).textContent = `
main#main-content {
margin-bottom: 70px;
}
`;