Geocaching + ProjectGC + Style

Some small design changes when using ProjectGC with Geocaching

  1. // ==UserScript==
  2. // @name Geocaching + ProjectGC + Style
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Some small design changes when using ProjectGC with Geocaching
  6. // @author Martin Jahn
  7. // @match https://www.geocaching.com/geocache/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. $('head').append('<link rel="stylesheet" type="text/css" href="https://caching.martinjahn.org/projectgc-geocaching-custom.css">');
  15.  
  16. })();