Skip to content

Instantly share code, notes, and snippets.

@tsundokul
Created August 11, 2021 18:49
Show Gist options
  • Save tsundokul/05ce7f6c7076e351a5ec4b6cd30b66fb to your computer and use it in GitHub Desktop.
Save tsundokul/05ce7f6c7076e351a5ec4b6cd30b66fb to your computer and use it in GitHub Desktop.
ING Homebank keep-alive (TamperMonkey)
// ==UserScript==
// @name Homebank keep-alive
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.homebank.ro/hb/hb/*
// @icon https://www.google.com/s2/favicons?domain=w3schools.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){ $('body').click(); }, 30000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment