// ==UserScript== // @name Unpublished-Geocaches // @namespace https://www.geocaching.com // @author Surfoo // @description Fetch unpublished geocaches // @include https://www.geocaching.com/geocache/* // @include https://www.geocaching.com/seek/cache_details.aspx* // @version 1.1.4 // @grant GM.xmlHttpRequest // @downloadURL https://update.greasyfork.icu/scripts/9509/Unpublished-Geocaches.user.js // @updateURL https://update.greasyfork.icu/scripts/9509/Unpublished-Geocaches.meta.js // ==/UserScript== var d = document.getElementById('Download'); var m = d.children; var last = m.item(m.length - 1); var html = '
'; last.innerHTML = last.innerHTML + html; var button = document.getElementById("SendToUnpublishedGeocaches"); button.addEventListener('click', function() { GM.xmlHttpRequest({ method: "POST", url: "https://unpublished.vaguelibre.net/gm.php", data: "content=" + encodeURIComponent(document.documentElement.innerHTML), headers: { "Content-Type": "application/x-www-form-urlencoded" }, onload: function(response) { var data = JSON.parse(response.responseText); if (!data.success) { alert(data.message); return false; } alert('Geocache added to your list!'); return true; } }); }, true);