默哀

try to take over the world!

目前为 2020-04-04 提交的版本。查看 最新版本

// ==UserScript==
// @name         默哀
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @include        *
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let now = new Date();
    if(now.getMonth() == 3 && now.getDate() == 4)
        document.querySelector('html').style.filter = 'grayscale(1)';
})();