How to paste text into input fields that block it?

Simply highlight the text and drag it into the text field. Try it here!

This works for me in Firefox and Chrome.


Press F12 and paste the following code into the console.

var allowPaste = function(e){
  e.stopImmediatePropagation();
  return true;
};
document.addEventListener('paste', allowPaste, true);