Geoguessr Helper

A simple extension to help you play Geoguessr better.

Co je Geoguessr Helper?

Geoguessr Helper je rozšíření Chrome vyvinuté SkiingIsFun123, a jeho hlavní funkcí je „A simple extension to help you play Geoguessr better.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Geoguessr Helper

Stáhněte si soubory rozšíření Geoguessr Helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Geoguessr Helper Geoguessr Helper
ID khchhghekameiogaofnhchgadjaommli
Oficiální URL https://chromewebstore.google.com/detail/geoguessr-helper/khchhghekameiogaofnhchgadjaommli
Popis A simple extension to help you play Geoguessr better.
Velikost souboru 11.73 KB
Počet instalací 831
Aktuální Verze 1.0.0
Poslední Aktualizace 2022-09-21
Datum Vydání 2022-09-21
Hodnocení 1.00/5 Celkem 2 Hodnocení
Vývojář SkiingIsFun123
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}