Last active
December 20, 2015 07:39
-
-
Save mortonfox/6094997 to your computer and use it in GitHub Desktop.
UserScript to remove find counts and disclaimer from geocache page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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