Das folgende Script stammt von Asp1024 und ändert den GC-Code auf den unitedchart.de Seiten in einen coord.info Link zum sofortigen Aufruf des Caches. Dazu ist das Programm Tampermonkey nötig.

//Start ### ->
// ==UserScript==
// @name Replace GC-Code by Link to coord.info
// @namespace http://tampermonkey.net/
// @version 0.2.2
// @description // 18.2.2026 ersetzt GC????? durch link auf coord.info
// @author You Specovius Asp1024
// @match https://www.unitedchart.de/Ranking/*.html
// @match https://www.unitedchart.de/Geocaching/*.html
// @match https://www.unitedchart.de/*.html
// @match https://www.unitedchart.de/Bundesl%C3%A4nder/*.html
// @icon https://www.google.com/s2/favicons?sz=64&domain=unitedchart.de
// @grant none
// ==/UserScript==


(function() {
'use strict';

// Regular expression pattern to match GCxxxxx
// var regex = /GC\w{5}/g;
var regex = /^GC[\w\d]{3,6}$/;
//URL
var linkUrl = "https://coord.info/";

// Target background color for the matching cells
var targetColor = "#D6DBDF";

// Find all tables on the page
var tables = document.getElementsByTagName("table");

// Iterate through each table
for (var i = 0; i < tables.length; i++) {
var rows = tables[i].rows;

// Iterate through each row
for (var j = 0; j < rows.length; j++) {
var cells = rows[j].cells;

// Iterate through each cell
for (var k = 0; k < cells.length; k++) {
var text = cells[k].textContent;
// alert(text);
// Check if the text matches the pattern
if (text.match(regex)) {
//cells[k].style.backgroundColor = targetColor;
var cellText = cells[k].textContent;
var linkText = cellText;
var link = document.createElement("a");
link.href = linkUrl + cellText;
// Set the font face and style
link.style.fontFamily = "Arial";
link.style.fontWeight = "bold";
// open link in new tab
link.target = "_blank";
link.textContent = linkText;

// Replace the cell text with the link
cells[k].innerHTML = "";
cells[k].appendChild(link);
// alert(link);
}
}
}
}
})();

// <- ### Ende