// ==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 // @downloadURL none // ==/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); }; })();