Skip to content

Instantly share code, notes, and snippets.

@OlliV
Created January 11, 2021 09:56
Show Gist options
  • Save OlliV/4d3668fd4afe92788c98e72018f7cb46 to your computer and use it in GitHub Desktop.
Save OlliV/4d3668fd4afe92788c98e72018f7cb46 to your computer and use it in GitHub Desktop.
Allow pasting in Chromium when a site blocks it
var allowPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('paste', allowPaste, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment