Hides GeoGuessr Footprint - This means hidding the author of the photo in the location while playing.
// ==UserScript==
// @name GeoGuessr Hide Footprint
// @namespace MrMike/GeoGuessr/HideFootprint
// @version 1.0
// @description Hides GeoGuessr Footprint - This means hidding the author of the photo in the location while playing.
// @author MrMike
// @include /^(https?)?(\:)?(\/\/)?([^\/]*\.)?geoguessr\.com($|\/.*)/
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
/* jshint esversion: 6 */
GM_addStyle(`
.gmnoprint, .gm-style-cc{
display: none;
}
`);