Skip to content

Instantly share code, notes, and snippets.

@AEnterprise
Created September 23, 2017 19:04
Show Gist options
  • Save AEnterprise/b4203a7df1717ec773bdc3ec915e8432 to your computer and use it in GitHub Desktop.
Save AEnterprise/b4203a7df1717ec773bdc3ec915e8432 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Wider spellstone
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Make the spellstone world bigger
// @author AEnterprise
// @match http://www.kongregate.com/games/synapticon/spellstone
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function() {
document.getElementById("gameiframe").width = 1000;
document.getElementById("game").style.width = "1000px";
document.getElementById("maingame").style.width = "1303px";
document.getElementById("maingamecontent").style.width = "1303px";
document.getElementById("flashframecontent").style.width = "1303px";
}, 1000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment