// ==UserScript== // @name GeoGuessr Hide Party Link and Email Addresses // @description Blurs out the party invite link so people can't randomly join by typing the address // @version 1.1 // @author victheturtle // @license MIT // @match https://www.geoguessr.com/* // @icon https://www.svgrepo.com/show/110964/password.svg // @grant none // @namespace https://greasyfork.org/users/967692-victheturtle // @downloadURL none // ==/UserScript== let style = document.createElement('style'); style.innerHTML = ` span[class^="copy-link_root__"] input, .edit-profile__section div[class^="form-field_formField__"] div p, input[name="email"][data-qa="email-field"], input[name="repeatEmail"] { filter: blur(5px); } `; document.body.append(style);