Link to Geocache.fi

Adds links to Geocache.fi on Geocaching.com site.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @id             www.geocaching.com-81623dfd-2928-4f4f-9297-0f83b7328ca6@scriptish
// @name           Link to Geocache.fi
// @version        1.0.3
// @namespace      [email protected]
// @author         Tommi Rautava
// @license        GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
// @description    Adds links to Geocache.fi on Geocaching.com site.
// @include        http://www.geocaching.com/geocache/*
// @include        https://www.geocaching.com/geocache/*
// @include        http://www.geocaching.com/seek/cache_details.aspx*
// @include        https://www.geocaching.com/seek/cache_details.aspx*
// @run-at         document-end
// ==/UserScript==
////////////////////////////////////////////////////////////////////////////////
//
//    Link to Geocache.fi
//    Copyright (C) 2011, 2013, 2015  Tommi Rautava
//
//    This program is free software: you can redistribute it and/or modify
//    it under the terms of the GNU General Public License as published by
//    the Free Software Foundation, either version 3 of the License, or
//    (at your option) any later version.
//
//    This program is distributed in the hope that it will be useful,
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//    GNU General Public License for more details.
//
//    You should have received a copy of the GNU General Public License
//    along with this program.  If not, see <http://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////////////

function createLinksArea(parentNode) {
	var myDiv = document.createElement('DIV');
	myDiv.id = 'LinksToGeocacheFi';
	parentNode.appendChild(myDiv);
	
	var myPara = document.createElement('P');
	myPara.className = 'NoBottomSpacing';
	myDiv.appendChild(myPara);

	var titleSpan = document.createElement('SPAN');
	titleSpan.setAttribute('style', 'font-weight:bold;');
	titleSpan.appendChild(document.createTextNode('Geocache.fi'));
	myPara.appendChild(titleSpan);
	myPara.appendChild(document.createTextNode(': '));
	
	var linksArea = document.createElement('SMALL');
	myPara.appendChild(linksArea);
	
	return linksArea;
}

function createLink(text, href) {
	var link = document.createElement('A');
	link.setAttribute('href', href);
	link.setAttribute('target', '_blank');
	link.appendChild(document.createTextNode(text));
	return link;
}

var gcCodeElem = document.getElementById('ctl00_ContentBody_CoordInfoLinkControl1_uxCoordInfoCode');

if (gcCodeElem) {
	var gcCode = gcCodeElem.textContent;
	
	if (gcCode) {
		var downloadDivElem = document.getElementById('Download');
		
		if (downloadDivElem) {
			var linksArea = createLinksArea(downloadDivElem.parentNode);
			
			linksArea.appendChild(createLink('Info', 'http://www.geocache.fi/caches/cachetieto.php?tarkka=1&wp='+ gcCode));
			linksArea.appendChild(document.createTextNode('\n'));
			
			linksArea.appendChild(createLink('Map', 'http://www.geocache.fi/kartta/index.php?showinfo='+ gcCode));
			linksArea.appendChild(document.createTextNode('\n'));
		}
	}
}

// EOF