ETools Script

Puts a link to ETools in the OGame (Gameforge) header's menu game's page

2015-03-12 기준 버전입니다. 최신 버전을 확인하세요.

// ==UserScript==
// @name           ETools Script
// @namespace      etools.user.js
// @source         http://vld.altervista.org/etools/
// @description    Puts a link to ETools in the OGame (Gameforge) header's menu game's page
// @version        1.0
// @author         vld
// @contributor    The Empire
// @icon           http://vld.altervista.org/etools/etools32.ico
// @icon64         http://vld.altervista.org/etools/etools64.ico
// @grant          none
// @noframes
// @run-at         document-end
// @include        http://s*-*.ogame.gameforge.com/game/index.php?page=*
// @exclude        http://s*-*.ogame.gameforge.com/game/index.php?page=buddies*
// @exclude        http://s*-*.ogame.gameforge.com/game/index.php?page=notices*
// @exclude        http://s*-*.ogame.gameforge.com/game/index.php?page=showmessage*
// @exclude        http://s*-*.ogame.gameforge.com/game/index.php?page=search*
// @exclude        http://s*-*.ogame.gameforge.com/game/index.php?page=trader*
// @exclude        http://s*-*.ogame.gameforge.com/game/index.php?page=empire*
// ==/UserScript==

$( document ).ready( function () {
    var tab = document.getElementById ("bar");
    if ((tab === null) || (tab.length < 8))
        return;
    var li8 = tab.getElementsByTagName ("li") [8];
    var li = document.createElement ("li");
    var a = document.createElement ("a");
    a.setAttribute ("href", "http://vld.altervista.org/etools/");
    a.setAttribute ("target", "_blank");
    a.appendChild (document.createTextNode ("ETools"));
    li.appendChild (a);
    li8.parentNode.insertBefore (li, li8);
} ) ();