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 |
电子邮箱 | [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" } } |