Geoguessr Helper

A simple extension to help you play Geoguessr better.

什麼是Geoguessr Helper?

Geoguessr Helper是由SkiingIsFun123開發的Chrome擴展程式,該擴展的主要功能是“A simple extension to help you play Geoguessr better.”。

擴展截圖

screenshot

下載Geoguessr Helper擴展crx文件

下載Geoguessr Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Geoguessr Helper Geoguessr Helper
ID khchhghekameiogaofnhchgadjaommli
官方網址 https://chromewebstore.google.com/detail/geoguessr-helper/khchhghekameiogaofnhchgadjaommli
簡介 A simple extension to help you play Geoguessr better.
檔案大小 11.73 KB
安裝次數 831
目前版本 1.0.0
更新時間 2022-09-21
上架時間 2022-09-21
評分 1.00/5 共 2 次評分
開發者 SkiingIsFun123
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}