ChatGPT Hide Identity

To hide your identity in ChatGPT

  1. /* ==UserStyle==
  2. @name ChatGPT Hide Identity
  3. @namespace github.com/openstyles/stylus
  4. @version 0.1.1
  5. @description To hide your identity in ChatGPT
  6. @author CY Fung
  7. @license MIT
  8. ==/UserStyle== */
  9.  
  10. @-moz-document domain("chat.openai.com") {
  11. /* Insert code here... */
  12. img[src*="avatar"]{
  13. transform: scale(10) translate(-2px,-2px);
  14. transform-origin: 0 0;
  15. pointer-events: none !important;
  16. user-select: none !important;
  17. }
  18. button:has(img[src*="avatar"]) .text-ellipsis{
  19. contain: strict;
  20. }
  21. }