Annotated Geoguessr

Augment user-created geoguessr maps with custom annotations by location.

Annotated Geoguessr क्या है?

Annotated Geoguessr brendanwebdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Augment user-created geoguessr maps with custom annotations by location."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Annotated Geoguessr एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension adds bookmarking support to Geoguessr. (In the current version that only applies to single player. Future releases will expand to multiplayer.)

Users can create and manage lists of location bookmarks. Lists can be used to create new maps or to download for third party use.

In addition, this extension adds annotation support. Map makers can annotate rounds with text, images, and links. Anybody using the extension will be able to see the annotations. Good for teaching, clues, or just plain fun.

An example annotated map can be found at: https://www.geoguessr.com/maps/638fd9b06e3136a88cb18e20/play

No features require registration expect creating annotations. Registration is done through google login.

(Please note, that in its current state, there is still an issue with background workers falling asleep after 30 seconds. If you are logged in and an action fails, try it again and it should succeed. This will be patched in future releases)                    

एक्सटेंशन की मूल जानकारी

नाम Annotated Geoguessr Annotated Geoguessr
ID mkagpkkhobnkdkecdmfgoglfppcdhcbn
आधिकारिक URL https://chromewebstore.google.com/detail/annotated-geoguessr/mkagpkkhobnkdkecdmfgoglfppcdhcbn
विवरण Augment user-created geoguessr maps with custom annotations by location.
फ़ाइल का आकार 432 KB
स्थापना संख्या 57
वर्तमान संस्करण 0.1.2
अंतिम अपडेट 2022-12-27
प्रकाशन तिथि 2022-12-06
डेवलपर brendanwebdev
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://sites.google.com/view/annotatedgeoguessr/home
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Annotated Geoguessr",
    "description": "Augment user-created geoguessr maps with custom annotations by location.",
    "version": "0.1.2",
    "action": {
        "default_icon": "extension-logo.d806e780.png",
        "default_title": "Annotated Geoguessr",
        "default_popup": "popup.3b9826bb.html"
    },
    "permissions": [
        "webRequest",
        "identity",
        "clipboard-write",
        "clipboard-read"
    ],
    "host_permissions": [
        "*:\/\/*.geoguessr.com\/*"
    ],
    "background": {
        "service_worker": "background.34ef17ed.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.geoguessr.com\/*"
            ],
            "js": [
                "content-main.8738f9db.js"
            ],
            "run_at": "document_start",
            "css": [
                "content-main.2eaf77ca.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content-main.8738f9db.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "matches": [
                "https:\/\/www.geoguessr.com\/*"
            ],
            "resources": [
                "injected-main.038e1279.js"
            ]
        }
    ],
    "oauth2": {
        "client_id": "39901797294-8urvpsp9p5lrostl79j6c1onu2cd4d3n.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email",
            "https:\/\/www.googleapis.com\/auth\/userinfo.profile"
        ]
    }
}