// ==UserScript== // @name 默哀 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @include * // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; let now = new Date(); if(now.getMonth() == 3 && now.getDate() == 4) document.querySelector('html').style.filter = 'grayscale(1)'; })();