Re-enable paste in form input when disabled by website.
var allowPaste = function(e) {
e.stopImmediatePropagation();
console.log("Free the paste!")
return true;
};
document.addEventListener('paste', allowPaste, true);
Credit: When the Password Field Says No to Paste by Daniela Baron