Greasy Fork is available in English.
Simulates user activity on a webpage by refreshing the page to prevent it from logging out due to inactivity, with reset if user interacts
// ==UserScript==
// @name Keep Outlook Alive
// @version 1
// @description Simulates user activity on a webpage by refreshing the page to prevent it from logging out due to inactivity, with reset if user interacts
// @match https://outlook.office.com/*
// @match https://teams.microsoft.com/*
// @match https://*-my.sharepoint.com/*
// @author Stib
// @grant none
// @namespace outlookalive.pureandapplied.com.au
// @license GPL3
// ==/UserScript==
(function() {
const timeOutMinutes = 15;
//console.log("ohai");
var timer = setInterval(function() {
console.log("reloading");
location.reload();
}, timeOutMinutes * 60 * 1000); // Reload the page every 15 minutes
document.addEventListener("click", resetTimer);
document.addEventListener("mousemove", resetTimer);
document.addEventListener("keypress", resetTimer);
function resetTimer() {
//console.log("timer reset");
clearInterval(timer);
var timer = setInterval(
function() {
location.reload();
},
timeOutMinutes * 60 * 1000); // Reload the page every 15 minutes
}
})();