Reputation: 143
I have a JavaScript button to remove the annoying 'autocomplete="off"' (because that's my decision, not yours). How can I do the same for websites that turn off copy/paste? (I can easily disable JavaScript, copy/paste and enable it again, but that's more troublesome than just clicking a button). I use a variety of different browsers so I'd prefer a JavaScript solution but I'm happy to be pointed to a browser-specific version if one exists.
Upvotes: 4
Views: 2532
Reputation: 17589
I'm afraid it is not something you can easily have done, as it would require heuristics to determine if attached event handlers are filtering input or doing something else.
Easiest way would be to turn off javascript, and if website is made good enough it would degrade gracefully and remain functioning. But you'll be able to use copy and paste
Upvotes: 1