Skip to content

Instantly share code, notes, and snippets.

@sk22
Last active May 2, 2016 10:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sk22/98bc88e5fdc53da4027663ac22f83134 to your computer and use it in GitHub Desktop.
Save sk22/98bc88e5fdc53da4027663ac22f83134 to your computer and use it in GitHub Desktop.
Enlarges your Slither.io map
// ==UserScript==
// @name Slither.io Enlarge Map
// @namespace http://tampermonkey.net/
// @version 0.1
// @author 22samuelk
// @description Enlarges your Slither.io map
// @updateURL https://gist.github.com/22sk/20aaea85f2b288f36a34e4982dfcb2c8/raw/enlarge-map.meta.js
// @downloadURL https://gist.github.com/22sk/98bc88e5fdc53da4027663ac22f83134/raw/enlarge-map.user.js
// @include http://slither.io/*
// @include https://slither.io/*
// @grant none
// ==/UserScript==
(function() {
setTimeout(function() {
loch.style.transform = "scale(2, 2)";
loch.style.height = 120;
loch.style.width = 120;
}, 20);
})(window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment