Remove popups on UiS Canvas

Remove popups on UiS Canvas, eh?

// ==UserScript==
// @name         Remove popups on UiS Canvas
// @namespace    http://tampermonkey.net/
// @version      2024-04-24
// @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
// ==/UserScript==

document.body.appendChild(document.createElement("style")).innerHTML = "#ek-overlay, #ek-modal{display:none;}";