// ==UserScript==
// @name GC3B5NZ
// @version 1.0
// @description Die Affen rasen durch den Wald
// @namespace http://www.geocaching.com/track/details.aspx?guid=b2a0dcc2-2925-40b4-8c36-9cc89e55ae92
// @copyright 2012+, Schmetter.ling
// @license Released under the GPL http://www.gnu.org/copyleft/gpl.html
// @attribution GC3B5NZ
// @include http://*.geocaching.com/seek/cache_details.aspx?guid=4a29a21f-68ab-4ab5-bba2-df90744ac000*
// @include https://*.geocaching.com/seek/cache_details.aspx?guid=4a29a21f-68ab-4ab5-bba2-df90744ac000*
// @include http://*.geocaching.com/seek/cache_details.aspx?wp=GC3B5NZ*
// @include https://*.geocaching.com/seek/cache_details.aspx?wp=GC3B5NZ*
// @include http://*.geocaching.com/geocache/GC3B5NZ*
// @include https://*.geocaching.com/geocache/GC3B5NZ*
// @downloadURL https://update.greasyfork.icu/scripts/3704/GC3B5NZ.user.js
// @updateURL https://update.greasyfork.icu/scripts/3704/GC3B5NZ.meta.js
// ==/UserScript==
// This is a Greasemonkey user script, see http://greasemonkey.mozdev.org/
document.body.style.backgroundImage = 'url("http://img.geocaching.com/cache/07a55a5c-f99a-453e-820e-e4912a5742ac.jpg?rnd=0.988561")';
var newCoords;
var oldCoords = document.getElementById('uxLatLon');
if (oldCoords) {
newCoords = document.createElement("span");
newCoords.innerHTML = 'N 48° 59.290 E 008° 25.064';
oldCoords.parentNode.replaceChild(newCoords, oldCoords);
}
var newUTMCoords;
var oldUTMCoords = document.getElementById('ctl00_ContentBody_LocationSubPanel');
if (oldUTMCoords) {
newUTMCoords = document.createElement("span");
newUTMCoords.innerHTML = 'UTM: 32U E 457402 N 5426304
';
oldUTMCoords.parentNode.replaceChild(newUTMCoords, oldUTMCoords);
}
var arrayHyperlink = document.getElementsByTagName("a");
var intHyperlinkCounter=0;
var imgSpoiler;
while(intHyperlinkCounter