Remove GeoCoin Count

Remove The GeoCoin Count from under your profile

  1. // ==UserScript==
  2. // @name Remove GeoCoin Count
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Remove The GeoCoin Count from under your profile
  6. // @author TheM1sty
  7. // @match https://www.geoguessr.com/*
  8. // @grant none
  9. // @icon https://www.google.com/s2/favicons?domain=geoguessr.com
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Function to remove the specified HTML element
  17. function removeElement(element) {
  18. if (element && element.parentNode) {
  19. element.parentNode.removeChild(element);
  20. }
  21. }
  22.  
  23. // Find the element with the specified class name and remove it
  24. const coinCountElement = document.querySelector('.coin-count_root__ADyUV');
  25. if (coinCountElement) {
  26. removeElement(coinCountElement);
  27. }
  28. })();

QingJ © 2025

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