Skip to content

Instantly share code, notes, and snippets.

@angelmartz
Last active October 23, 2024 00:44
Show Gist options
  • Save angelmartz/db920137ca74fd15ef5e7f8b02af78c1 to your computer and use it in GitHub Desktop.
Save angelmartz/db920137ca74fd15ef5e7f8b02af78c1 to your computer and use it in GitHub Desktop.
Permitir Pegar en Páginas

Activar "pegar" en paginas

  1. Abrir Herramientas de Desarrollador
  2. Entrar a Consola
  3. Pegar el código
  4. Darle Enter
let pegar = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('paste', pegar, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment