GeoGuessr timer

This extension adds timers to GeoGuessr score bar

Cos'è GeoGuessr timer?

GeoGuessr timer è un'estensione di Chrome sviluppata da fabrice404, e la sua funzione principale è "This extension adds timers to GeoGuessr score bar".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione GeoGuessr timer

Scarica i file di estensione GeoGuessr timer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome GeoGuessr timer GeoGuessr timer
ID cpkgpifaafehooacgbigplegdgbnhcbi
URL Ufficiale https://chromewebstore.google.com/detail/geoguessr-timer/cpkgpifaafehooacgbigplegdgbnhcbi
Descrizione This extension adds timers to GeoGuessr score bar
Dimensione del File 26.67 KB
Conteggio Installazioni 1,580
Versione Corrente 1.1.2
Ultimo Aggiornamento 2023-11-09
Data di Pubblicazione 2019-08-22
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore fabrice404
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/fabrice404/geoguessr-timer
URL della Pagina di Aiuto https://github.com/fabrice404/geoguessr-timer/issues
Lingue Supportate 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"
    }
}