Skip to content

Instantly share code, notes, and snippets.

@khanghh
Last active January 4, 2019 09:57
Show Gist options
  • Save khanghh/ab2d1df9a7deb70c78a0c84170e6af34 to your computer and use it in GitHub Desktop.
Save khanghh/ab2d1df9a7deb70c78a0c84170e6af34 to your computer and use it in GitHub Desktop.
remove disable copy
* {
  -webkit-user-select: text !important;  /* Chrome 49+ */
  -moz-user-select: text !important;     /* Firefox 43+ */
  -ms-user-select: text !important;      /* No support yet */
  user-select: text !important;  
}
document.querySelector('head').innerHTML += '<style>*{-webkit-user-select:text!important;-moz-user-select:text!important;-ms-user-select:text!important;user-select:text!important}</style>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment