Geoguessr Helper

A simple extension to help you play Geoguessr better.

Geoguessr Helper là gì?

Geoguessr Helper là một tiện ích mở rộng Chrome được phát triển bởi SkiingIsFun123, và tính năng chính của nó là "A simple extension to help you play Geoguessr better.".

Ả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 Geoguessr Helper

Tải xuống các tệp mở rộng Geoguessr Helper 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

                        A simple extension to help you play Geoguessr better.
To use this extension, download it, open your round of Geoguessr, refresh the page, and then open the extension. From there, you can make a guess based on the information provided.

Source code can be found here:
https://github.com/SkiingIsFun123/Geoguessr-Helper                    

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

Tên Geoguessr Helper Geoguessr Helper
ID khchhghekameiogaofnhchgadjaommli
URL Chính Thức https://chromewebstore.google.com/detail/geoguessr-helper/khchhghekameiogaofnhchgadjaommli
Mô tả A simple extension to help you play Geoguessr better.
Kích Thước Tệp 11.73 KB
Số Lần Cài Đặt 831
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-09-21
Ngày Phát Hành 2022-09-21
Đánh Giá 1.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển SkiingIsFun123
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Geoguessr Helper",
    "version": "1.0.0",
    "description": "A simple extension to help you play Geoguessr better.",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.geoguessr.com\/game\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "all_frames": true
        }
    ],
    "action": {
        "default_title": "Geoguessr Helper",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    }
}