NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Clear Cart // @namespace http://tampermonkey.net/ // @version 0.1 // @description Adds a Clear Cart button to Calypso // @author Alexander Cardosi // @match https://www.calypsoedu.com/* // @grant none // @license MIT // ==/UserScript== window.addEventListener("load", () => { if (document.querySelector("tr:nth-of-type(3) td.actions")) { document.querySelector("tr:nth-of-type(3) td.actions").style.display = "block"; } })