Georanked

Geoguessr ranked extension to handle ranked games in Geoguessr

What is Georanked?

Georanked is a Chrome extension developed by jussetain, and its main feature is "Geoguessr ranked extension to handle ranked games in Geoguessr".

Extension Screenshots

screenshot

Download Georanked Extension CRX File

Download Georanked extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Georanked will let you play ranked games with geoguessr                    

Extension Basic Information

Name Georanked Georanked
ID cjkbnjgngfcijeikaehopbhdiiaajdcb
Official URL https://chromewebstore.google.com/detail/georanked/cjkbnjgngfcijeikaehopbhdiiaajdcb
Description Geoguessr ranked extension to handle ranked games in Geoguessr
File Size 583 KB
Installation Count 86
Current Version 0.1.1
Last Updated 2020-11-23
Publish Date 2020-11-23
Rating 5.00/5 Total 4 Ratings
Developer jussetain
Email [email protected]
Payment Type free
Extension Website http://georanked.com
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Georanked",
    "version": "0.1.1",
    "description": "Geoguessr ranked extension to handle ranked games in Geoguessr",
    "browser_action": {
        "default_popup": "index.html"
    },
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "manifest_version": 2,
    "background": {
        "matches": [
            "*"
        ],
        "scripts": [
            "jquery.js",
            "script.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.geoguessr.com\/*"
            ],
            "js": [
                "jquery.js",
                "script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "webRequest",
        "https:\/\/www.geoguessr.com\/*",
        "storage",
        "tabs"
    ],
    "content_security_policy": "default-src 'none'; script-src 'self'; connect-src http:\/\/georanked.com:3690 https:\/\/www.geoguessr.com\/* http:\/\/www.geoguessr.com\/* http:\/\/localhost:3690; img-src http:\/\/georanked.com:3690\/* https:\/\/static-cdn.jtvnw.net\/* https:\/\/www.static-cdn.jtvnw.net\/* http:\/\/localhost:3690 data: https: http:; style-src 'self'"
}