Avoid Copy Self Email in OpenAI ChatGPT

To avoid copying the avatar email address in OpenAI ChatGPT's chatroom.

  1. /* ==UserStyle==
  2. @name Avoid Copy Self Email in OpenAI ChatGPT
  3. @namespace github.com/openstyles/stylus
  4. @version 1.0.3
  5. @description To avoid copying the avatar email address in OpenAI ChatGPT's chatroom.
  6. @author CY Fung
  7. @license MIT
  8. ==/UserStyle== */
  9.  
  10. @-moz-document domain("chat.openai.com") {
  11. /* Insert code here... */
  12. span > span + img[src*="avatar"][alt*="@"], span > span + img[src*="gravatar"][alt]{
  13. user-select: none !important;
  14. touch-action: none !important;
  15. }
  16.  
  17. img[src*="https://s.gravatar.com/avatar/"] {
  18. user-select: none !important;
  19. touch-action: none !important;
  20. }
  21. div.h-6.w-6 > div > img[src*="https://s.gravatar.com/avatar/"] {
  22. transform: scale(8);
  23. transform-origin: 1px 1px;
  24. transform-origin: 0.2px 0.2px;
  25. }
  26.  
  27. body main .select-none[class] {
  28. user-select: none !important;
  29. }
  30. }