Other cool utilities that should be always used

  • Threads-nocopy.js disables any possible way to copy page text. Should be used with the following css snippet:

    * {
    user-select: none;
    }
    *::selection {
    background: none;
    }
    *::-moz-selection {
    background: none;
    }

Return to threads