Keep Me Alive
Steps To Keep You Live
You need to be logged-in from a browser (preferably chrome)
- Open Console
- Choose a time interval (in minutes) and update the code below.
- Then copy the same code and paste it in the console.
- Press Enter (i.e basically execute the code)
- Done!
let timeIntervalInMinutes = 1;
let keepmealive = setInterval(function () {
setTimeout(function () {
// console.log("1");
$(".user-information-button").click();
}, 1000);
setTimeout(function () {
// console.log("2");
$(".profile-set-presence-button").click();
}, 2000);
setTimeout(function () {
// console.log("3");
$(".menuitem:nth-child(1) > .ts-sym:nth-child(1)").click();
}, 3000);
}, timeIntervalInMinutes * 60 * 1000);
Q&A
-
How to check if program is working?
- Make sure to keep console open
- Uncomment the console logs and check for the output for each interval
- UI will react to each command and open respective windows/panels for performing the click operations
-
How to stop the program? (Without closing the window/console)
- In browser console run command
clearInterval(keepmealive);
- In browser console run command