Skip to content

Instantly share code, notes, and snippets.

View Aggeloz's full-sized avatar
💭
Hello there!

Aggelos Vogiatzis Aggeloz

💭
Hello there!
View GitHub Profile
@Aggeloz
Aggeloz / force-ctrl-c-v.md
Created May 13, 2023 17:34 — 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);
})();