// ==UserScript==
// @name          OTPdirekt ugyanott
// @namespace     http://blog.educomm.hu
// @description	  Ugyanabban az ablakban nyitja meg az OTPdirekt szolgáltatást az OTP honlapján
// @include       https://www.otpbank.hu/OTP_Portal/online/*
// ==/UserScript==

var form, target;

// discover the form
form = document.evaluate('//form[@name="OTPdirektBejelentkezesFormKicsi"]', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);

form.snapshotItem(0).target = '_self';
GM_log(form.snapshotItem(0).target);

