// ==UserScript== // @name MyInfo Redirect // @namespace http://scratch.mit.edu // @version 0.1 // @description Redirects MyInfo Logout // @author FlamedDogo // @match https://login.montana.edu/idp/profile/cas/logout* // @downloadURL https://raw.githubusercontent.com/FlamedDogo99/MSU-Userscripts/main/src/RedirectMyInfo.js // @license None // @grant none // @updateURL https://raw.githubusercontent.com/FlamedDogo99/MSU-Userscripts/main/src/RedirectMyInfo.js // @run-at document-start // ==/UserScript== function injectRefresh() { document.head.insertAdjacentHTML("beforeend", ``); document.body.insertAdjacentHTML("beforeend", `

Redirecting to MyInfo

`); } injectRefresh();