Avoid Copy Self Email in OpenAI ChatGPT

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

目前為 2023-04-29 提交的版本,檢視 最新版本

/* ==UserStyle==
@name           Avoid Copy Self Email in OpenAI ChatGPT
@namespace      github.com/openstyles/stylus
@version        1.0.1
@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*="@"], span > span + img[src*="gravatar"][alt]{
        user-select: none !important;
        touch-action: none !important;
    }
}