DEV Community

abbazs
abbazs

Posted on

1

How to paste into text fields in websites that block pasting?

Press F12 and paste the following code into the console.

var allowPaste = function(e){
  e.stopImmediatePropagation();
  return true;
};
document.addEventListener('paste', allowPaste, true);
Enter fullscreen mode Exit fullscreen mode

Viola one can now paste into any text filed.
Repeat again if the site again blocks pasting.

Top comments (1)

Collapse
 
aravind2707 profile image
Aravind Srinivas

PS : can also open the console by pressing Ctrl + Shift + J (Windows / Linux) or Cmd+Opt+J (Mac) and paste the above code to enable pasting on websites that block it!

hope it helps :)<3

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Engage with a wealth of insights in this thoughtful article, valued within the supportive DEV Community. Coders of every background are welcome to join in and add to our collective wisdom.

A sincere "thank you" often brightens someone’s day. Share your gratitude in the comments below!

On DEV, the act of sharing knowledge eases our journey and fortifies our community ties. Found value in this? A quick thank you to the author can make a significant impact.

Okay