Greasy Fork is available in English.
http://drrrkari.com/room/の背景を緑色に変更します
// ==UserScript==
// @name 背景を緑に変更
// @namespace http://drrrkari.com/room/
// @version 1.0
// @description http://drrrkari.com/room/の背景を緑色に変更します
// @author あなたの名前
// @match http://drrrkari.com/room/
// @icon https://www.google.com/s2/favicons?domain=drrrkari.com
// ==/UserScript==
(function() {
'use strict';
document.body.style.background = "green";
})();