Avoid Copy Self Email in OpenAI ChatGPT

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

As of 10.04.2023. See ბოლო ვერსია.

/* ==UserStyle==
@name           Avoid Copy Self Email in OpenAI ChatGPT
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    To avoid copying the avatar email address in OpenAI ChatGPT's chatroom.
@author         CY Fung
@license MIT
==/UserStyle== */

@-moz-document domain("chat.openai.com") {
    /* Insert code here... */
    span > span + img[src*="avatar"][alt*="@"]{
        user-select: none !important;
        touch-action: none !important;
    }
}