SideTracked Series Stats

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

安装此脚本?
作者推荐脚本

您可能也喜欢Church Micro Stats

安装此脚本
  1. // ==UserScript==
  2. // @name SideTracked Series Stats
  3. // @namespace http://www.cryotest.com/
  4. // @description Adds your SideTracked stats badge onto your profile page and SideTracked cache pages on geocaching.com.
  5. // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
  6. // @copyright 2015-2020, Cryo99
  7. // @attribution SideTracked stats provided by Chris AKA Bus.Stop (http://www.sidetrackedseries.info/)
  8. // @attribution Icon image extracted from the SideTracked banner by Chris AKA Bus.Stop
  9. // @icon https://raw.githubusercontent.com/Cryo99/SideTrackedStats/master/icon48.png
  10. // @icon64 https://raw.githubusercontent.com/Cryo99/SideTrackedStats/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/SideTrackedStats
  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: ['SideTracked', 'side tracked'],
  29. callerVersion: GM_info.script.version,
  30. elPrefix: 'sts',
  31. imgScript: 'st_F_award.php',
  32. seriesName: 'SideTracked Series',
  33. seriesURL: 'sidetrackedseries.info',
  34. seriesLevels: ['Awards', 'Levels', 'Jobs', 'None'],
  35. seriesLevelDefault: 'Jobs'
  36. }
  37. new GCStatsBanner(cfg).init();
  38. }());