JavaScript Ative a área de transferência
// Paste into the JS console on the page in question
var allowPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('paste', allowPaste, true);
hepaestus