Skip to content

Instantly share code, notes, and snippets.

@Hypfer
Last active September 14, 2019 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hypfer/91cbbbc36c708a3e424464ee2556bc95 to your computer and use it in GitHub Desktop.
Save Hypfer/91cbbbc36c708a3e424464ee2556bc95 to your computer and use it in GitHub Desktop.
Fixes the 5 minute PSD2 session timeout madness
// ==UserScript==
// @name ING DiBa Keepalive
// @namespace jockel
// @version 1.0
// @description Fixes the 5 minute PSD2 session timeout madness
// @match https://*.ing.de/*
// @grant GM_xmlhttpRequest
// @grant GM.xmlHttpRequest
// ==/UserScript==
(function() {
'use strict';
setInterval(() => {
GM_xmlhttpRequest({
method: "GET",
url: "https://banking.ing.de/app/navi/keepalive?_=" + new Date().getTime(),
});
}, 5000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment