Little Bridges Series Stats

Adds your Little Bridges stats badge onto your profile page and Little Bridges cache pages on geocaching.com.

安裝腳本?
作者推薦腳本

您可能也會喜歡 SideTracked Series Stats

安裝腳本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        Little Bridges Series Stats
// @namespace   http://www.cryotest.com/
// @description Adds your Little Bridges stats badge onto your profile page and Little Bridges cache pages on geocaching.com.
// @license     GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
// @copyright   2020, Cryo99
// @attribution Little Bridges stats provided by Chris AKA Bus.Stop (https://www.littlebridgesseries.co.uk)
// @attribution Icon image extracted from the Little Bridges banner by Chris AKA Bus.Stop
// @icon        https://raw.githubusercontent.com/Cryo99/LittleBridgesStats/master/icon48.png
// @icon64      https://raw.githubusercontent.com/Cryo99/LittleBridgesStats/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     0.0.2
// @supportURL	https://github.com/Cryo99/LittleBridgesStats
// @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: ['Little Bridges #'],
		callerVersion: GM_info.script.version,
		elPrefix: 'lbs',
		seriesName: 'Little Bridges Series',
		seriesURL: 'littlebridgesseries.co.uk',
		seriesLevels: ['Levels', 'None'],
		seriesLevelDefault: 'Levels'
	};
    new GCStatsBanner(cfg).init();
}());