Ikariam Graphics CDN

By Joel Lee Last update Feb 26, 2009 — Installed 9,997 times. Daily Installs: 27, 25, 25, 27, 17, 32, 22, 20, 19, 13, 23, 21, 17, 16, 28, 23, 13, 15, 22, 17, 10, 25, 19, 19, 16, 18, 12, 18, 22, 20, 10, 19

There are 4 previous versions of this script.

// ==UserScript==
// @name           Ikariam Graphics CDN
// @namespace      http://blog.bcse.info/ikariam-graphics-cdn
// @description    Load Ikariam UI images from Coral CDN, may speed up Ikariam.
// @version        0.3.0
// @include        http://s*.ikariam.tld/*
// ==/UserScript==


var cssNode = document.createElement('link');
cssNode.type = 'text/css';
cssNode.rel = 'stylesheet';
cssNode.href = 'http://bcse.myweb.hinet.net.nyud.net/ikariam/img.css';
cssNode.media = 'screen';
cssNode.title = 'Ikariam Graphics CDN';
document.getElementsByTagName("head")[0].appendChild(cssNode);