// ==UserScript== // @name Remove popups on UiS Canvas // @namespace http://tampermonkey.net/ // @version 2024-04-23 // @description Remove popups on UiS Canvas, eh? // @author UiS mad student // @match https://stavanger.instructure.com/ // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @downloadURL none // ==/UserScript== document.body.appendChild(document.createElement("style")).innerHTML = "#ek-overlay, #ek-modal{display:none;}";