Skip to content

Instantly share code, notes, and snippets.

@Ditti4
Last active October 13, 2017 17: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 Ditti4/ec8749465104c913e1994d8c565f4d1e to your computer and use it in GitHub Desktop.
Save Ditti4/ec8749465104c913e1994d8c565f4d1e to your computer and use it in GitHub Desktop.
Logout-Hinweis-Skipper für eBanking Private Edition
// ==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