Georanked

Geoguessr ranked extension to handle ranked games in Geoguessr

Georanked là gì?

Georanked là một tiện ích mở rộng Chrome được phát triển bởi jussetain, và tính năng chính của nó là "Geoguessr ranked extension to handle ranked games in Geoguessr".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Georanked

Tải xuống các tệp mở rộng Georanked dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Georanked will let you play ranked games with geoguessr                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Georanked Georanked
ID cjkbnjgngfcijeikaehopbhdiiaajdcb
URL Chính Thức https://chromewebstore.google.com/detail/georanked/cjkbnjgngfcijeikaehopbhdiiaajdcb
Mô tả Geoguessr ranked extension to handle ranked games in Geoguessr
Kích Thước Tệp 583 KB
Số Lần Cài Đặt 86
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2020-11-23
Ngày Phát Hành 2020-11-23
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển jussetain
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://georanked.com
Ngôn Ngữ Được Hỗ Trợ 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'"
}