Skip to content

Instantly share code, notes, and snippets.

@mortonfox
Last active December 20, 2015 07:39
Show Gist options
  • Save mortonfox/6094997 to your computer and use it in GitHub Desktop.
Save mortonfox/6094997 to your computer and use it in GitHub Desktop.
UserScript to remove find counts and disclaimer from geocache page.
// ==UserScript==
// @name Geocaching.com remove find counts and disclaimer
// @namespace geocaching.local
// @description Remove find counts and disclaimer from geocache page.
// @include http://www.geocaching.com/*
// @include https://www.geocaching.com/*
// @version 0.0.2
// ==/UserScript==
var sheet = document.createElement('style')
sheet.innerHTML = ".Disclaimer, .logOwnerStats { display:none; }";
document.body.appendChild(sheet);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment