View on GitHub

NodeJS Notes

Compilation of NodeJS Notes

Keep Me Alive

Visitors

Steps To Keep You Live

You need to be logged-in from a browser (preferably chrome)

  1. Open Console
  2. Choose a time interval (in minutes) and update the code below.
  3. Then copy the same code and paste it in the console.
  4. Press Enter (i.e basically execute the code)
  5. 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

Visitors