Avoid Copy Self Email in OpenAI ChatGPT

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

目前为 2023-04-10 提交的版本,查看 最新版本

  1. /* ==UserStyle==
  2. @name Avoid Copy Self Email in OpenAI ChatGPT
  3. @namespace github.com/openstyles/stylus
  4. @version 1.0.0
  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*="@"]{
  13. user-select: none !important;
  14. touch-action: none !important;
  15. }
  16. }