Enable Text Selection

by Vladimir Kutepov

JavaScript

// enable text selection on website
(function(a){var b=a.createElement("style");"textContent"in b?b.textContent="*,*::before,*::after{-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;user-select:text !important}":b.styleSheet.cssText="*,*::before,*::after{-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;user-select:text !important}";a.body.appendChild(b);a.onselectstart=a.onmousedown=function(){return!0}})(document)