Last active
March 24, 2022 10:27
-
-
Save gsilvan/6c586c5b636e433c3f8c55dfdfea4fca to your computer and use it in GitHub Desktop.
refresh session-counter script for DKB banking to stay logged-in forever
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 DKB Logout preventer | |
// @namespace Violentmonkey Scripts | |
// @match https://www.dkb.de/* | |
// @grant none | |
// @version 0.1 | |
// @author - | |
// @description 6.1.2021, 12:52:33 | |
// ==/UserScript== | |
var intervalID = setInterval(function(){refreshSession();}, 60000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment