您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Change the header color and logo on Snail IDE
当前为
// ==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 } })();