Created
August 11, 2021 18:49
-
-
Save tsundokul/05ce7f6c7076e351a5ec4b6cd30b66fb to your computer and use it in GitHub Desktop.
ING Homebank keep-alive (TamperMonkey)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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