Drop this into the dev console using F12.
====================================================
var allowPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('paste', allowPaste, true);
====================================================
If you are a web dev and you block pasting, you are an arsehole.