Antipoder

Takes your GeoGuessr guess and flips it to the antipode

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

Advertisement:

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

Advertisement:

// ==UserScript==
// @name         Antipoder
// @description  Takes your GeoGuessr guess and flips it to the antipode
// @license      MIT
// @namespace    http://tampermonkey.net/
// @version      2026-05-09
// @match        *://*.geoguessr.com/*
// @run-at       document-start
// @grant        unsafeWindow
// ==/UserScript==

let gcoords = [ 0, 0 ];

function calculateIncorrectedLatLong( latitude, longitude ) {
    latitude = -1 * latitude;
    longitude = ( 180 - Math.abs( longitude ) ) * ( longitude > 0 ? -1 : 1 );
	return { latitude, longitude };
}

const originalFetch = unsafeWindow.fetch;

const updateButton = () => {
	const button = document.querySelector('button[data-qa=perform-guess]');
	if ( ! button || button.disabled ) return;

	button.style.background = '#6817ae';
	button.innerText = 'GUESS AT ANTIPODE';
};
setInterval( updateButton, 250 );

unsafeWindow.fetch = new Proxy( originalFetch, {
	apply: function (target, that, args) {

		let [resource, config] = args;

        if (
            resource.match && (
                resource?.match( /^https:\/\/www\.geoguessr\.com\/api\/v\d\/games\// ) ||
                resource?.match( /^https:\/\/[^\.]+\.geoguessr\.com\/.*?\/(guess|pin)$/ )
            )
        ) {
            if ( config?.body ) {
                const orig = JSON.parse( config.body );
                if ( orig.lat && orig.lng ) {
                    console.log( orig );
                    const incorrected = calculateIncorrectedLatLong( orig.lat, orig.lng );
                    if ( incorrected.latitude && incorrected.longitude ) {
                        config.body = JSON.stringify( {
                            ...orig,
                            lat: incorrected.latitude,
                            lng: incorrected.longitude,
                        } );
                    }
                }
            }
        }

		const promise = Reflect.apply(target, that, args);

		return promise;
	}
} );