NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name YWOT Tile Grid
// @namespace http://www.yourworldoftext.com/~Pingwin44/
// @version 1.1
// @description Adds a tile grid to Your World Of Text.
// @author ~Pingwin44
// @match http://www.yourworldoftext.com/*
// @grant none
// ==/UserScript==
function c(d) {
var a, b;
a = document.getElementsByTagName('div')[0];
if (!a) { return; }
b = document.createElement('style');
b.type = 'text/css';
b.innerHTML = d;
a.appendChild(b);
}
c('.tilecont {border: 1px dotted rgba(0,0,0,0.18); outline: 1px dotted rgba(255,255,255,0.18);}');