GeoGuessr Lunar V1 CHEAT | Google Maps, PlonkIT

JOIN THE DISCORD

目前为 2025-03-24 提交的版本。查看 最新版本

// ==UserScript==
// @name         GeoGuessr Lunar V1 CHEAT | Google Maps, PlonkIT
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  JOIN THE DISCORD
// @author       Neo
// @match        https://www.geoguessr.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Create the main container
    const box = document.createElement('div');
    box.style.position = 'fixed';
    box.style.top = '50%';
    box.style.left = '50%';
    box.style.transform = 'translate(-50%, -50%)';
    box.style.backgroundColor = 'rgba(0, 0, 0, 0.8)';
    box.style.color = 'white';
    box.style.padding = '20px';
    box.style.borderRadius = '10px';
    box.style.textAlign = 'center';
    box.style.zIndex = '9999';
    box.style.fontFamily = 'Arial, sans-serif';
    box.style.boxShadow = '0 0 10px rgba(255, 255, 255, 0.5)';

    // Create the text
    const text = document.createElement('p');
    text.innerHTML = '<b>THIS IS NOT THE SCRIPT. Join Discord for the script. I decided I want a semi-controlled environment and not just the script floating through the web for security reasons</b>';
    text.style.marginBottom = '10px';
    text.style.fontSize = '14px';

    // Create the button
    const button = document.createElement('a');
    button.textContent = 'Discord';
    button.href = 'https://discord.gg/TaCumDu36N';
    button.target = '_blank';
    button.style.display = 'inline-block';
    button.style.backgroundColor = '#7289da';
    button.style.color = 'white';
    button.style.padding = '10px 20px';
    button.style.borderRadius = '5px';
    button.style.textDecoration = 'none';
    button.style.fontWeight = 'bold';
    button.style.fontSize = '16px';
    button.style.cursor = 'pointer';
    button.style.transition = 'background-color 0.2s';

    button.onmouseover = () => button.style.backgroundColor = '#5b6eae';
    button.onmouseout = () => button.style.backgroundColor = '#7289da';

    // Append elements
    box.appendChild(text);
    box.appendChild(button);
    document.body.appendChild(box);
})();

QingJ © 2025

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