Open In Calc (MyMathLab / Pearson)

Converts the accessibility text of equation to plain text then opens it in WolfRamAlpha

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Open In Calc (MyMathLab / Pearson)
// @namespace    https://www.mattrangel.net
// @version      0.1
// @description  Converts the accessibility text of equation to plain text then opens it in WolfRamAlpha
// @author       Matt
// @match        https://xlitemprod.pearsoncmg.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=pearson.com
// @grant        none
// @license      GNU GPLv3
// ==/UserScript==
const rlist = [["Upper", ""],["equals","="],["left parenthesis ","("],["plus","+"],["StartFraction","("],["Over",")/("],["EndFraction",")"],[" right parenthesis",")"],[" Superscript ","^"],[" squared","^2"],["minus","-"],[" cubed","^3"],["negative ","-"],["times","*"],["less than or ","<"],["less than","<"],["greater than or ",">"],["greater than",">"],[" Subscript ","_"],["Baseline",""],["StartRoot","sqrt("],["EndRoot",")"]];
var txt = "";
function doc_keyUp(e) {
    //Tilde - Opens text in WolfRamAlpha
    if (e.key == "`") {
        txt = document.getElementsByClassName("eqAccessibleLabel")[0].innerText;
        for (let i = 0; i < rlist.length; i++) {
            txt = txt.replaceAll(rlist[i][0],rlist[i][1]);
        }
        var wra_link = ("https://www.wolframalpha.com/input?i=" + encodeURIComponent(txt));
        window.open(wra_link, "_blank");
    }
    //F2 - Copies text to clipboard for troubleshooting
    else if (e.key =="F2") {
        var lst = document.getElementsByClassName("eqAccessibleLabel");
        txt = "";
        for (let i = 0; i < lst.length; i++) {
            txt += (lst[i].innerText + " ");
        }
        for (let i = 0; i < rlist.length; i++) {
            txt = txt.replaceAll(rlist[i][0],rlist[i][1]);
        }
        navigator.clipboard.writeText(txt);
    }
}

document.addEventListener('keyup', doc_keyUp, false);