GeoGuessr Hide Party Link and Email Addresses

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

  1. // ==UserScript==
  2. // @name GeoGuessr Hide Party Link and Email Addresses
  3. // @description Blurs out party invite links and email addresses to prevent stream hacking or doxxing
  4. // @version 1.2.0
  5. // @author victheturtle
  6. // @license MIT
  7. // @match https://www.geoguessr.com/*
  8. // @icon https://www.svgrepo.com/show/110964/password.svg
  9. // @grant none
  10. // @namespace https://gf.qytechs.cn/users/967692-victheturtle
  11. // ==/UserScript==
  12.  
  13. let style = document.createElement('style');
  14. style.innerHTML = `
  15. .edit-profile__section div[class^="form-field_formField__"] div p, input[name="email"][data-qa="email-field"], input[name="repeatEmail"] {
  16. filter: blur(5px);
  17. }
  18. span[class^="copy-link_root__"] input {
  19. filter: blur(5px);
  20. }
  21. [class*='invite-modal_section__'] :nth-child(3) :nth-child(3) {
  22. filter: blur(10px);
  23. }
  24. [class*='invite-modal_qr__'] {
  25. filter: blur(8px);
  26. }
  27. `;
  28. document.body.append(style);

QingJ © 2025

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