Geoguessr Helper

A simple extension to help you play Geoguessr better.

Co to jest Geoguessr Helper?

Geoguessr Helper to rozszerzenie Chrome opracowane przez SkiingIsFun123, a jego główną funkcją jest „A simple extension to help you play Geoguessr better.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Geoguessr Helper

Pobierz pliki rozszerzeń Geoguessr Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        A simple extension to help you play Geoguessr better.
To use this extension, download it, open your round of Geoguessr, refresh the page, and then open the extension. From there, you can make a guess based on the information provided.

Source code can be found here:
https://github.com/SkiingIsFun123/Geoguessr-Helper                    

Podstawowe informacje o rozszerzeniu

Nazwa Geoguessr Helper Geoguessr Helper
ID khchhghekameiogaofnhchgadjaommli
Oficjalny URL https://chromewebstore.google.com/detail/geoguessr-helper/khchhghekameiogaofnhchgadjaommli
Opis A simple extension to help you play Geoguessr better.
Rozmiar pliku 11.73 KB
Liczba instalacji 831
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2022-09-21
Data Publikacji 2022-09-21
Ocena 1.00/5 Łącznie 2 Oceny
Deweloper SkiingIsFun123
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Geoguessr Helper",
    "version": "1.0.0",
    "description": "A simple extension to help you play Geoguessr better.",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.geoguessr.com\/game\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "all_frames": true
        }
    ],
    "action": {
        "default_title": "Geoguessr Helper",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    }
}