JavaScript Mengaktifkan clipboard

// Paste into the JS console on the page in question
var allowPaste = function(e){
  e.stopImmediatePropagation();
  return true;
};
document.addEventListener('paste', allowPaste, true);
hepaestus