pokes myabacus server to keep the session alive
myabacus_poker.user.js
edited
1// ==UserScript==
2// @name MyAbacus Poker
3// @namespace Violentmonkey Scripts
4// @match https://abaprod01.sympasol.com/portal/myabacus/*
5// @grant none
6// @version 1.0
7// @author js
8// @description 02/01/2026, 14:31:37
9// ==/UserScript==
10
11setInterval(() => {
12 const element = document.querySelector('idle-notification')
13 if (element) {
14 element._pokeServer()
15 }
16}, 60000)