Advertisement
arkanon

Disabling Selection Deactivation

Oct 14th, 2019
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // stop stupid sites from disabling text selection (with CSS)
  2. style = document.createElement('style')
  3. style.innerHTML = '*{ user-select: auto !important }'
  4. document.body.appendChild(style)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement