KATYA / Clientside Trail

// ==UserScript==
// @name         Clientside Trail
// @version      1.0
// @description  Clientside Trail for Slither.IO
// @author       -A
// @match        http://slither.io/
// @grant        none
// ==/UserScript==

function start() {
  try {
    newFood(3,snake.xx,snake.yy,50,5,Math.floor(Math.random() * 7) + 1);
}
catch(err) {

}
  setTimeout(start, 100);
}

// boot up the first call
start();