GeoGuessr timer

This extension adds timers to GeoGuessr score bar

Что такое GeoGuessr timer?

GeoGuessr timer - это расширение Chrome, разработанное fabrice404, и его основная функция - "This extension adds timers to GeoGuessr score bar".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения GeoGuessr timer

Скачайте файлы расширений GeoGuessr timer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension adds timers to the score bar of GeoGuessr. 
 - Rounds mode: one timer for each round, and one for the total time.
 - Streak: one timer for the current round, and one for the total time

Made by fabrice404, updated by oh2mp                    

Основная информация о расширении

Название GeoGuessr timer GeoGuessr timer
ID cpkgpifaafehooacgbigplegdgbnhcbi
Официальный URL https://chromewebstore.google.com/detail/geoguessr-timer/cpkgpifaafehooacgbigplegdgbnhcbi
Описание This extension adds timers to GeoGuessr score bar
Размер файла 26.67 KB
Количество установок 1,580
Текущая Версия 1.1.2
Последнее Обновление 2023-11-09
Дата публикации 2019-08-22
Рейтинг 5.00/5 Всего 2 оценок
Разработчик fabrice404
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/fabrice404/geoguessr-timer
URL страницы помощи https://github.com/fabrice404/geoguessr-timer/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GeoGuessr timer",
    "version": "1.1.2",
    "description": "This extension adds timers to GeoGuessr score bar",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "src\/play.js"
            ],
            "matches": [
                "https:\/\/geoguessr.com\/*",
                "https:\/\/www.geoguessr.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "32": "img\/icon-32.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "options_ui": {
        "page": "src\/settings.html"
    },
    "action": {
        "default_title": "GeoGuessr Timer",
        "default_popup": "src\/settings.html"
    }
}