Georanked

Geoguessr ranked extension to handle ranked games in Geoguessr

什么是Georanked?

Georanked是由jussetain开发的Chrome扩展程序,该扩展的主要功能是“Geoguessr ranked extension to handle ranked games in Geoguessr”。

扩展截图

screenshot

下载Georanked扩展crx文件

下载Georanked扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Georanked will let you play ranked games with geoguessr                    

扩展基本信息

名称 Georanked Georanked
ID cjkbnjgngfcijeikaehopbhdiiaajdcb
官方URL https://chromewebstore.google.com/detail/georanked/cjkbnjgngfcijeikaehopbhdiiaajdcb
简介 Geoguessr ranked extension to handle ranked games in Geoguessr
文件大小 583 KB
安装次数 86
当前版本 0.1.1
更新时间 2020-11-23
上架时间 2020-11-23
评分 5.00/5 共4次评分
开发者 jussetain
电子邮箱 [email protected]
付费类型 free
扩展官网 http://georanked.com
支持的语言 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'"
}