GeoGuessr timer

This extension adds timers to GeoGuessr score bar

什么是GeoGuessr timer?

GeoGuessr timer是由fabrice404开发的Chrome扩展程序,该扩展的主要功能是“This extension adds timers to GeoGuessr score bar”。

扩展截图

screenshot
screenshot

下载GeoGuessr timer扩展crx文件

下载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"
    }
}