OpenGuessr Hack Location Finder

Extract and open PanoramaIframe location in Google Maps full site when pressing Control + X + S together

Fra og med 05.12.2024. Se den nyeste version.

// ==UserScript==
// @name         OpenGuessr Hack Location Finder
// @namespace    https://openguessr.com/
// @version      1.9
// @description  Extract and open PanoramaIframe location in Google Maps full site when pressing Control + X + S together
// @author       YourName
// @license      MIT
// @match        https://openguessr.com/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    // Track pressed keys
    let controlPressed = false;
    let xPressed = false;
    let sPressed = false;

    // Ensure iframe interaction doesn't block key detection
    const iframe = document.querySelector('#PanoramaIframe');
    if (iframe) {
        iframe.addEventListener('mouseenter', () => {
            // Refocus the parent document to ensure keypresses are detected
            window.focus();
        });
    }

    // Listen for keydown events globally
    document.addEventListener('keydown', (event) => {
        const key = event.key.toLowerCase();

        if (key === 'control') controlPressed = true;
        if (key === 'x') xPressed = true;
        if (key === 's') sPressed = true;

        // Trigger action if all three keys are pressed
        if (controlPressed && xPressed && sPressed) {
            // Locate the iframe element by its ID
            if (iframe) {
                const src = iframe.getAttribute('src');
                if (src) {
                    try {
                        // Parse the URL to extract the location parameter
                        const url = new URL(src);
                        const location = url.searchParams.get('location'); // Extract "LAT,LONG"
                        if (location) {
                            // Open the full Google Maps URL
                            const mapsUrl = `https://www.google.com/maps?q=${location}`;
                            window.open(mapsUrl, '_blank');
                        } else {
                            console.error('Location parameter not found in iframe URL.');
                        }
                    } catch (error) {
                        console.error('Error parsing iframe URL:', error);
                    }
                } else {
                    console.error('Iframe src attribute not found.');
                }
            } else {
                console.error('Iframe with ID "PanoramaIframe" not found.');
            }

            // Prevent default browser behavior
            event.preventDefault();

            // Reset keys after action
            controlPressed = false;
            xPressed = false;
            sPressed = false;
        }
    });

    // Listen for keyup events globally
    document.addEventListener('keyup', (event) => {
        const key = event.key.toLowerCase();

        if (key === 'control') controlPressed = false;
        if (key === 'x') xPressed = false;
        if (key === 's') sPressed = false;
    });

    // Reset keys when the window loses focus
    window.addEventListener('blur', () => {
        controlPressed = false;
        xPressed = false;
        sPressed = false;
    });
})();