您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Originally called something that was more, vulgar lets say, V3rm Anti Rainbow reverts all V3rmillion logos to the original one (no rainbow logos).
// ==UserScript== // @name V3rmillion Anti Rainbow // @namespace http://tampermonkey.net/ // @version 0.1 // @description Originally called something that was more, vulgar lets say, V3rm Anti Rainbow reverts all V3rmillion logos to the original one (no rainbow logos). // @author Cy // @match https://v3rmillion.net/* // @icon https://www.google.com/s2/favicons?sz=64&domain=v3rmillion.net // @grant none // @license MIT // ==/UserScript== (function() { const original_favicon = document.createElement('link'); original_favicon.setAttribute('type', 'image/x-icon'); original_favicon.setAttribute('rel', 'icon'); original_favicon.setAttribute('href', 'https://v3rmillion.net/favicon.ico'); document.getElementsByTagName('head')[0].appendChild(original_favicon); document.getElementById('logo').children[0].children[0].src='https://v3rmillion.net/images/logo.png'; })();