Greasy Fork

来自缓存

Greasy Fork is available in English.

Rainbow

make the world colorful again

当前为 2022-03-22 提交的版本,查看 最新版本

// ==UserScript==
// @name         Rainbow
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  make the world colorful again
// @author       xll
// @match        https://www.vikacg.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=vikacg.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here..


    window.onload = function(){ setTimeout( function(){
        document.querySelector("body > style:nth-child(2)").remove();
        //alert("i was executed");

    }, 1000); };


})();