Hallo leute,
ich habe folgenden script:
[code]// ==UserScript==
// @name Rohstofffelder
// @description Travian T2 Rohstofffelder
// @include http://.travian.org/dorf1.php
// @exclude http://forum.travian.*
// @exclude http://.travian./index.php*
// @exclude http://.travian./anleitung.php*
// @exclude http://.travian./login.php*
// @exclude http://.travian./chat/*
// @exclude http://.travian./impressum.php*
// @exclude http://.travian./karte2.php*
// ==/UserScript==
( function () {
var customhtml =
"<a href=http://www.travian.org/build.php?id=4>Ausbauen | " +
"<a href=http://www.travian.org/build.php?id=8>Ausbauen | " +
GM_addStyle(„.TopBar .Header { width: 1000px !important; }“);
tds=document.getElementsByTagName(‚td‘);
tds[0].innerHTML += customhtml;
})();[/code]
dies ist ein Greasemonkey userscript welches 2 links auf www.travian.org/dorf1.php einfügt.Diese links befinden sich links unter der navigationsbar…weiss vielleicht jemand wie ich diese links an einer xbelibigen stelle auf der seite setzten kann?(smit height=„xx“ width=„xx“ klappts leider nicht =( )
schonmal danke für alle antworten^^