Enable Text Selection disabled by CSS

Enable Text Selection disabled by user-select css property.

  1. // ==UserScript==
  2. // @name Enable Text Selection disabled by CSS
  3. // @namespace Enable Text Selection disabled by user-select css property
  4. // @description Enable Text Selection disabled by user-select css property.
  5. // @author SMed79
  6. // @version 1.0
  7. // @icon http://i.imgur.com/qLZWVRC.png
  8. // @twitterURL https://twitter.com/SMed79
  9. // @run-at document-start
  10. // @include http://*
  11. // @include https://*
  12. // @grant GM_addStyle
  13. // ==/UserScript==
  14.  
  15. GM_addStyle ( " \
  16. * { \
  17. user-select: text !important; \
  18. -moz-user-select: text !important; \
  19. -ms-user-select: text !important; \
  20. -khtml-user-select: text !important; \
  21. -o-user-select: text !important; \
  22. -webkit-user-select: text !important; \
  23. -webkit-touch-callout: text !important; \
  24. } \
  25. " );