Skip to content

Instantly share code, notes, and snippets.

@Lucaber
Last active October 14, 2023 09:46
Show Gist options
  • Save Lucaber/595e4e4f72ef99ddc683e4fe5ab53de3 to your computer and use it in GitHub Desktop.
Save Lucaber/595e4e4f72ef99ddc683e4fe5ab53de3 to your computer and use it in GitHub Desktop.
ING Banking stay logged in without 5 minute timer (Graesemonkey/TamperMonkey User Script)
// ==UserScript==
// @name ING Banking stay logged in without 5 minute timer
// @version 1
// @grant none
// @match https://banking.ing.de/*
// ==/UserScript==
function blur() {
document.dispatchEvent(new Event("blur"))
setTimeout(focus, Math.random() * 60 * 1000)
}
function focus() {
document.dispatchEvent(new Event("focus"))
setTimeout(blur, Math.random() * 60 * 1000)
}
focus()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment