NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Sean's Agar Server // @namespace Sean // @version 1.0 // @description Connect to Sean's Server // @author Sean // @match http://agar.io/ // @grant none // ==/UserScript== document.getElementById("a300x250").innerHTML = "<br /><button class='btn btn-success btn-sm btn-block' id='sean' >Connect to Sean's Server</button>"; function myfunc (zEvent) { connect("ws://srv.sean.idv.tw:443"); } var myDiv = document.querySelector ("#sean"); if (myDiv) { myDiv.addEventListener ("click", myfunc , false); }