Aktifkan clipboard

// Paste into browser console to enable pasting on a webpage
var allowPaste = function(e){
  e.stopImmediatePropagation();
  return true;
};
document.addEventListener('paste', allowPaste, true);
hepaestus