You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Runs when a change is detected to the title of the html page, checks if a title is stored in session storage. If it can be found in session storage, set the title back to stop the website from modifying it. */
changeDetect = new MutationObserver(function() {
if (typeof window.sessionStorage.tabName != "undefined") {
if (document.title != window.sessionStorage.tabName) {