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.

安裝腳本?
作者推薦腳本

您可能也會喜歡 SideTracked Series Stats

安裝腳本
  1. // ==UserScript==
  2. // @name A Fine Pair Series Stats
  3. // @namespace http://www.cryotest.com/
  4. // @description Adds your A Fine Pair stats badge onto your profile page and A Fine Pair cache pages on geocaching.com.
  5. // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
  6. // @copyright 2019-2020, Cryo99
  7. // @attribution A Fine Pair stats provided by Chris AKA Bus.Stop (http://www.afinepair.co.uk/)
  8. // @attribution Icon image extracted from the A Fine Pair banner by Chris AKA Bus.Stop
  9. // @icon https://raw.githubusercontent.com/Cryo99/AFinePairStats/master/icon48.png
  10. // @icon64 https://raw.githubusercontent.com/Cryo99/AFinePairStats/master/icon64.png
  11. // @include /^https?://www\.geocaching\.com/(account/dashboard|my|default|geocache|profile|seek/cache_details|p)/
  12. // @exclude /^https?://www\.geocaching\.com/(login|about|articles|myfriends)/
  13. // @version 1.0.1
  14. // @supportURL https://github.com/Cryo99/AFinePairStats
  15. // @require https://greasyfork.org/scripts/389508-gc-stats-banner-library/code/GC%20Stats%20Banner%20Library.js?version=880219
  16. // @require https://openuserjs.org/src/libs/sizzle/GM_config.js
  17. // @grant GM_xmlhttpRequest
  18. // @grant GM_registerMenuCommand
  19. // @grant GM_setValue
  20. // @grant GM_getValue
  21. // ==/UserScript==
  22.  
  23.  
  24. (function (){
  25. "use strict";
  26.  
  27. var cfg = {
  28. cacheTitles: ['A Fine Pair #'],
  29. callerVersion: GM_info.script.version,
  30. elPrefix: 'afp',
  31. seriesName: 'A Fine Pair Series',
  32. seriesURL: 'afinepair.co.uk',
  33. seriesLevels: ['Awards', 'Levels', 'None'],
  34. seriesLevelDefault: 'Levels'
  35. };
  36.  
  37. new GCStatsBanner(cfg).init();
  38. }());