NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name fools // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match *www.torn.com/* // @license MIT // @updateURL https://openuserjs.org/meta/Ahab/fools.meta.js // ==/UserScript== var a = ['april-fools1','april-fools2','april-fools3'] $('div[class^="sidebar_"] div[id^="sidebar"]').addClass(a[Math.floor(Math.random() * a.length)]) $('div[class*="sortable-box"]').addClass(a[Math.floor(Math.random() * a.length)])