NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name HPE Logon Fix
// @namespace http://utahcon.com/
// @version 0.2
// @description HPE Logon doesn't allow you to paste passwords, this fixes that issue.
// @author Utahcon
// @match https://login-iam.ext.hpe.com/*
// @updateURL https://openuserjs.org/meta/utahcon/HPE_Logon_Fix.meta.js
// @grant none
// ==/UserScript==
(function () {
'use strict';
// Your code here...
$("#password")
.unbind("click")
.unbind("keydown")
.unbind("paste")
.unbind("input")
.removeAttr("onpaste")
.removeAttr("autocomplete");
})();