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.」です。
拡張機能のスクリーンショット
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 |
ID | khchhghekameiogaofnhchgadjaommli |
公式URL | 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 |
Eメール | [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" } } |