Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save sheeley/53882a8a8f1f30e86d79 to your computer and use it in GitHub Desktop.

Select an option

Save sheeley/53882a8a8f1f30e86d79 to your computer and use it in GitHub Desktop.
F U ADP
// this gets you most of the way to being able to paste your account information
var trs = document.querySelectorAll('tr, input[type=text]');
for(var i = 0; i < trs.length; i++){
var tr = trs[i];
tr.onpaste = null;
tr.onkeypress = null;
tr.oncontextmenu = null;
}
document.removeEventListener('mousedown')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment