GeoGuessr Hide Party Link and Email Addresses

Blurs out party invite links and email addresses to prevent stream hacking or doxxing

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         GeoGuessr Hide Party Link and Email Addresses
// @description  Blurs out party invite links and email addresses to prevent stream hacking or doxxing
// @version      1.2.0
// @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
// ==/UserScript==

let style = document.createElement('style');
style.innerHTML = `
    .edit-profile__section div[class^="form-field_formField__"] div p, input[name="email"][data-qa="email-field"], input[name="repeatEmail"] {
        filter: blur(5px);
    }
    span[class^="copy-link_root__"] input {
        filter: blur(5px);
    }
    [class*='invite-modal_section__'] :nth-child(3) :nth-child(3) {
        filter: blur(10px);
    }
    [class*='invite-modal_qr__'] {
        filter: blur(8px);
    }
`;
document.body.append(style);