您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a Download Button to Geocaching Lab Pages to easily downlad the gpx files
当前为
// ==UserScript== // @name Lab GPX Download // @author Jerome Luckenbach // @namespace confectrician.de // @description Adds a Download Button to Geocaching Lab Pages to easily downlad the gpx files // @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 // ==/UserScript== $(function(){ /* * Get current Path and extract Lab guid */ pathName = window.location.pathname; pathValues = pathName.split("/"); downloadPath = "/Adventures/DetailsAsGPX/" + pathValues[3]; /* * Move existing Link to the Left */ $('#leaderboard').css({ "margin-right" : "0px", "padding-right": "9px", "padding-left" : "9px", "right" : "206px" }); /* * Create Download Link */ $('#leaderboard').parent().append( '<a id="dl_link" class="link-leaderboard" href="' + downloadPath + '" style="padding-left: 9px;">Download as GPX File</a>' ); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址