Skip to content

ChatGPT Personalizado by dand-code

Details

Authordand-code

LicenseNo License

Categoryhttps://chat.openai.com/

Created

Updated

Size1.0 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Remove chatgpt favicon

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         ChatGPT Personalizado
@version      20240521.09.16
@namespace    https://userstyles.world/user/dand-code
@description  Remove chatgpt favicon
@author       dand-code
@license      No License
==/UserStyle== */

@-moz-document domain("chatgpt.com") {
link[rel~="icon"] {
        display: none;
    }

    /* Este bloque se usará para inyectar JavaScript */
    :root {
        --stylus-javascript: {
        (function() {
            'use strict';

            // Cambiar el título de la página
            document.title = "Ada";

            // Cambiar el favicon
            var link = document.createElement('link');
            link.type = 'image/x-icon';
            link.rel = 'icon';
            link.href = 'https://www.google.com/favicon.ico';
            var oldLink = document.querySelector("link[rel~='icon']");
            if (oldLink) {
                document.head.removeChild(oldLink);
            }
            document.getElementsByTagName('head')[0].appendChild(link);
        })();
    };
   }
}

Reviews

No reviews yet.