Enable Paste
June 19, 2018
To enable paste in chrome, open the console and enter:
var allowPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('paste', allowPaste, true);
To enable paste in chrome, open the console and enter:
var allowPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('paste', allowPaste, true);