Skip to content

Instantly share code, notes, and snippets.

@KunoiSayami
Last active September 30, 2021 09:54
Show Gist options
  • Save KunoiSayami/543bb1d1424931851842c7ceb7e01b72 to your computer and use it in GitHub Desktop.
Save KunoiSayami/543bb1d1424931851842c7ceb7e01b72 to your computer and use it in GitHub Desktop.
/* ==UserStyle==
@name Select code on CSDN without login
@namespace https://github.com/KunoiSayami
@version 1.0.0
@description You can select code on CSDN, but without to login.
@author KunoiSayami
@license AGPLv3
@homepageURL https://gist.github.com/KunoiSayami/543bb1d1424931851842c7ceb7e01b72
@supportURL https://gist.github.com/KunoiSayami/543bb1d1424931851842c7ceb7e01b72
@preprocessor stylus
==/UserStyle== */
@-moz-document domain("blog.csdn.net") {
#content_views pre code {
-webkit-user-select: unset;
user-select: auto;
}
#content_views pre {
-webkit-user-select: unset;
user-select: auto;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment