Musíte se zaregistrovat nebo přihlásit, teprve poté budete moct pokračovat.

Selectable text on FF.net

Exactly what it looks like.

  1. // ==UserScript==
  2. // @name Selectable text on FF.net
  3. // @description Exactly what it looks like.
  4. // @namespace asdf
  5. // @match http://www.fanfiction.net/*
  6. // @match https://www.fanfiction.net/*
  7. // @version 1
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. GM_addStyle(" .storytext, .storytextp \
  12. { \
  13. -moz-user-select: inherit !important; \
  14. -webkit-user-select: inherit !important; \
  15. user-select: inherit !important; \
  16. }");