// ==UserScript== // @name Lab GPX Download // @author Jerome Luckenbach // @namespace confectrician.de // @description Adds a Download // @include https://labs.geocaching.com/Adventures/Details/* // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js // @version 1.0 // @grant none // @downloadURL none // ==/UserScript== $(function(){ // /Adventures/Details/90ced6d4-0a22-4c19-a491-7ae17d489c60 pathName = window.location.pathname; pathValues = pathName.split("/"); downloadPath = "/Adventures/DetailsAsGPX/" + pathValues[3]; $('#leaderboard').css({ "margin-right" : "0px", "padding-right": "9px", "padding-left" : "9px", "right" : "206px" }); $('#leaderboard').parent().append( 'Download‌ as‌ GPX‌ File' ); });