GeoGuessr Hide Party Link and Email Addresses

Blurs out the party invite link so people can't randomly join by typing the address

目前为 2022-10-09 提交的版本。查看 最新版本

// ==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://gf.qytechs.cn/users/967692-victheturtle
// ==/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);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址