// ==UserScript== // @name Super Color Name Changer // @namespace Super Color Name Changer // @version 1.0.0 // @description Automatically changes the name of your nickname on cells in Agma! // @author Arimas // @license MIT // @match *://agma.io/ // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(function(){document.getElementById('cGoldName').dispatchEvent(new MouseEvent("click"));},250); })();