Created
September 23, 2017 19:04
-
-
Save AEnterprise/b4203a7df1717ec773bdc3ec915e8432 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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