GeoGuessr Cheat | Google Maps, PlonkIT, XP

Open Google Maps / PlonkIT / XP | Secure Legit Cheat

  1. // ==UserScript==
  2. // @name GeoGuessr Cheat | Google Maps, PlonkIT, XP
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.7
  5. // @description Open Google Maps / PlonkIT / XP | Secure Legit Cheat
  6. // @author Neo
  7. // @match https://www.geoguessr.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Create the main container
  16. const box = document.createElement('div');
  17. box.style.position = 'fixed';
  18. box.style.top = '50%';
  19. box.style.left = '50%';
  20. box.style.transform = 'translate(-50%, -50%)';
  21. box.style.backgroundColor = 'rgba(0, 0, 0, 0.8)';
  22. box.style.color = 'white';
  23. box.style.padding = '20px';
  24. box.style.borderRadius = '10px';
  25. box.style.textAlign = 'center';
  26. box.style.zIndex = '9999';
  27. box.style.fontFamily = 'Arial, sans-serif';
  28. box.style.boxShadow = '0 0 10px rgba(255, 255, 255, 0.5)';
  29.  
  30. // Create the text
  31. const text = document.createElement('p');
  32. text.innerHTML = '<b>SCRIPT GOT MAJOR UPDATE. JOIN DISCORD FOR LATEST BUILD. GREASYFORK DOESNT LET ME UPDATE IT</b>';
  33. text.style.marginBottom = '10px';
  34. text.style.fontSize = '14px';
  35.  
  36. // Create the button
  37. const button = document.createElement('a');
  38. button.textContent = 'Discord';
  39. button.href = 'https://discord.gg/TaCumDu36N';
  40. button.target = '_blank';
  41. button.style.display = 'inline-block';
  42. button.style.backgroundColor = '#7289da';
  43. button.style.color = 'white';
  44. button.style.padding = '10px 20px';
  45. button.style.borderRadius = '5px';
  46. button.style.textDecoration = 'none';
  47. button.style.fontWeight = 'bold';
  48. button.style.fontSize = '16px';
  49. button.style.cursor = 'pointer';
  50. button.style.transition = 'background-color 0.2s';
  51.  
  52. button.onmouseover = () => button.style.backgroundColor = '#5b6eae';
  53. button.onmouseout = () => button.style.backgroundColor = '#7289da';
  54.  
  55. // Append elements
  56. box.appendChild(text);
  57. box.appendChild(button);
  58. document.body.appendChild(box);
  59. })();

QingJ © 2025

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