Last active
September 14, 2019 18:05
-
-
Save Hypfer/91cbbbc36c708a3e424464ee2556bc95 to your computer and use it in GitHub Desktop.
Fixes the 5 minute PSD2 session timeout madness
This file contains 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 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