Greasy Fork is available in English.
LSD xd
当前为
// ==UserScript==
// @name OWOP Random Color
// @namespace *.ourworldofpixels.com/*
// @version 0.1
// @description LSD xd
// @author Armağan
// @match *.ourworldofpixels.com/*
// @grant none
// ==/UserScript==
OWOP.chat.local("--------------\nRefresh the page to stop Random Colors.\n--------------");
setInterval(function(){
var R = Math.floor((Math.random() * 255) + 1)
var G = Math.floor((Math.random() * 255) + 1)
var B = Math.floor((Math.random() * 255) + 1)
WorldOfPixels.player.selectedColor = [R, G, B]
},50);