您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Blurs out party invite links and email addresses to prevent stream hacking or doxxing
- // ==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);