// ==UserScript== // @name Erev - Anti Cupidon // @namespace http://tampermonkey.net/ // @version 0.1.1 // @description Get rid of the Valentines theme (and maybe other themes as well) on Erevollution. // @author Sky // @match https://*.erevollution.com/* // @icon https://www.google.com/s2/favicons?domain=erevollution.com // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.getElementsByTagName('style')[0].textContent = ''; })();