Last active
October 13, 2017 17:05
-
-
Save Ditti4/ec8749465104c913e1994d8c565f4d1e to your computer and use it in GitHub Desktop.
Logout-Hinweis-Skipper für eBanking Private Edition
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 eBPE-Logout-Hinweis-Skipper | |
// @namespace https://gist.github.com/Ditti4 | |
// @version 0.1 | |
// @description Überspringt in der Software "eBanking Private Edition" (eingesetzt unter anderem von der Volksbank und Wüstenrot) den Hinweis über eine "vergessene" Abmeldung. | |
// @author Ditti4 | |
// @match https://*.de/banking-private/portal?token=* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var labelElements = document.getElementById("lblAbmeldungVergessen"); | |
if(!labelElements || labelElements.length === 0) { | |
return; | |
} | |
document.querySelector("#UnitCommands input[type='submit']").click(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment