Greasy Fork

Anti Cupidon

Get rid of the Valentines theme (and maybe other themes as well) on Erevollution.

目前为 2022-02-08 提交的版本。查看 最新版本

// ==UserScript==
// @name         Anti Cupidon
// @namespace    http://tampermonkey.net/
// @version      0.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
// ==/UserScript==

(function() {
    'use strict';
    document.getElementsByTagName('style')[0].textContent = '';
})();