Skip to content

Instantly share code, notes, and snippets.

View scazzy's full-sized avatar
🤩

Elton Jain scazzy

🤩
View GitHub Profile
@scazzy
scazzy / force-ctrl-c-v.md
Created July 15, 2023 20:21 — forked from Gustavo-Kuze/force-ctrl-c-v.md
Enable copy and paste in a webpage from the browser console
javascript:(function(){
  allowCopyAndPaste = function(e){
  e.stopImmediatePropagation();
  return true;
  };
  document.addEventListener('copy', allowCopyAndPaste, true);
  document.addEventListener('paste', allowCopyAndPaste, true);
  document.addEventListener('onpaste', allowCopyAndPaste, true);
})();