Georanked

Geoguessr ranked extension to handle ranked games in Geoguessr

Vad är Georanked?

Georanked är en Chrome-tillägg utvecklad av jussetain, och dess huvudfunktion är "Geoguessr ranked extension to handle ranked games in Geoguessr".

Tilläggsskärmbilder

screenshot

Ladda ner Georanked-förlängningens CRX-fil

Ladda ner Georanked-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Georanked will let you play ranked games with geoguessr                    

Grundläggande Information om Tillägg

Namn Georanked Georanked
ID cjkbnjgngfcijeikaehopbhdiiaajdcb
Officiell webbadress https://chromewebstore.google.com/detail/georanked/cjkbnjgngfcijeikaehopbhdiiaajdcb
Beskrivning Geoguessr ranked extension to handle ranked games in Geoguessr
Filstorlek 583 KB
Antal Installationer 86
Aktuell Version 0.1.1
Senast Uppdaterad 2020-11-23
Publiceringsdatum 2020-11-23
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare jussetain
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://georanked.com
Stödda Språk 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'"
}