Greasy Fork is available in English.
Get rid of the Valentines theme (and maybe other themes as well) on Erevollution.
当前为
// ==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
// ==/UserScript==
(function() {
'use strict';
document.getElementsByTagName('style')[0].textContent = '';
})();