Snail IDE Header Customization

Change the header color and logo on Snail IDE

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Snail IDE Header Customization
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Change the header color and logo on Snail IDE
// @author       You
// @match        https://www.snail-ide.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Change header color
    const header = document.querySelector('header');
    if (header) {
        header.style.backgroundColor = '#4E97FE';
    }

    // Replace logo with new image
    const logo = document.querySelector('header img'); // Adjust the selector if needed
    if (logo) {
        logo.src = 'https://upload.wikimedia.org/wikipedia/commons/b/b1/Scratch_S.svg';
        logo.style.width = 'auto';  // Adjust the size if necessary
        logo.style.height = '50px'; // Adjust the height if necessary
    }
})();