A Fine Pair Series Stats

Adds your A Fine Pair stats badge onto your profile page and A Fine Pair cache pages on geocaching.com.

Bu scripti kur?
Yazarın tavsiye ettiği betik

Siz bunuda beğenebilirsiniz: SideTracked Series Stats.

Bu scripti kur

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name        A Fine Pair Series Stats
// @namespace   http://www.cryotest.com/
// @description Adds your A Fine Pair stats badge onto your profile page and A Fine Pair cache pages on geocaching.com.
// @license     GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
// @copyright   2019-2020, Cryo99
// @attribution A Fine Pair stats provided by Chris AKA Bus.Stop (http://www.afinepair.co.uk/)
// @attribution Icon image extracted from the A Fine Pair banner by Chris AKA Bus.Stop
// @icon        https://raw.githubusercontent.com/Cryo99/AFinePairStats/master/icon48.png
// @icon64      https://raw.githubusercontent.com/Cryo99/AFinePairStats/master/icon64.png
// @include     /^https?://www\.geocaching\.com/(account/dashboard|my|default|geocache|profile|seek/cache_details|p)/
// @exclude     /^https?://www\.geocaching\.com/(login|about|articles|myfriends)/
// @version     1.0.1
// @supportURL	https://github.com/Cryo99/AFinePairStats
// @require     https://greasyfork.org/scripts/389508-gc-stats-banner-library/code/GC%20Stats%20Banner%20Library.js?version=880219
// @require     https://openuserjs.org/src/libs/sizzle/GM_config.js
// @grant       GM_xmlhttpRequest
// @grant       GM_registerMenuCommand
// @grant       GM_setValue
// @grant       GM_getValue
// ==/UserScript==


(function (){
	"use strict";

	var cfg = {
		cacheTitles: ['A Fine Pair #'],
		callerVersion: GM_info.script.version,
		elPrefix: 'afp',
		seriesName: 'A Fine Pair Series',
		seriesURL: 'afinepair.co.uk',
		seriesLevels: ['Awards', 'Levels', 'None'],
		seriesLevelDefault: 'Levels'
	};

    new GCStatsBanner(cfg).init();
}());