Geoguessr Helper
A simple extension to help you play Geoguessr better.
Что такое Geoguessr Helper?
Geoguessr Helper - это расширение Chrome, разработанное SkiingIsFun123, и его основная функция - "A simple extension to help you play Geoguessr better.".
Снимки экрана расширения
Скачать файл CRX расширения Geoguessr Helper
Скачайте файлы расширений 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" } } |