Avoid Copy Self Email in OpenAI ChatGPT

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

Εγκατάσταση αυτού του κώδικαΒοήθεια Εγκατάσταση ως στυλ χρήστηΒοήθεια
Κώδικας προτεινόμενος από τον δημιιουργό

Μπορεί, επίσης, να σας αρέσει ο κώδικας ChatGPT Hide Identity.

Εγκατάσταση ως στυλ χρήστη
/* ==UserStyle==
@name           Avoid Copy Self Email in OpenAI ChatGPT
@namespace      github.com/openstyles/stylus
@version        1.0.3
@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;
    }

    img[src*="https://s.gravatar.com/avatar/"] {
        user-select: none !important;
        touch-action: none !important;
    }
    
    div.h-6.w-6 > div > img[src*="https://s.gravatar.com/avatar/"] {
        transform: scale(8);
        transform-origin: 1px 1px;
        transform-origin: 0.2px 0.2px;
    }

    body main .select-none[class] {
        user-select: none !important;
    }
    
}
长期地址
遇到问题?请前往 GitHub 提 Issues。