GeoGuessr timer

This extension adds timers to GeoGuessr score bar

Was ist GeoGuessr timer?

GeoGuessr timer ist eine Chrome-Erweiterung, die von fabrice404 entwickelt wurde, und ihr Hauptmerkmal ist "This extension adds timers to GeoGuessr score bar".

Erweiterungsscreenshots

screenshot
screenshot

GeoGuessr timer-Erweiterungs-CRX-Datei herunterladen

Laden Sie GeoGuessr timer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name GeoGuessr timer GeoGuessr timer
ID cpkgpifaafehooacgbigplegdgbnhcbi
Offizielle URL https://chromewebstore.google.com/detail/geoguessr-timer/cpkgpifaafehooacgbigplegdgbnhcbi
Beschreibung This extension adds timers to GeoGuessr score bar
Dateigröße 26.67 KB
Installationsanzahl 1,580
Aktuelle Version 1.1.2
Letztes Update 2023-11-09
Veröffentlichungsdatum 2019-08-22
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler fabrice404
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/fabrice404/geoguessr-timer
Hilfeseite URL https://github.com/fabrice404/geoguessr-timer/issues
Unterstützte Sprachen 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"
    }
}