GeoGuessr timer

This extension adds timers to GeoGuessr score bar

Apa itu GeoGuessr timer?

GeoGuessr timer adalah ekstensi Chrome yang dikembangkan oleh fabrice404, dan fitur utamanya adalah "This extension adds timers to GeoGuessr score bar".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi GeoGuessr timer

Unduh file ekstensi GeoGuessr timer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama GeoGuessr timer GeoGuessr timer
ID cpkgpifaafehooacgbigplegdgbnhcbi
URL Resmi https://chromewebstore.google.com/detail/geoguessr-timer/cpkgpifaafehooacgbigplegdgbnhcbi
Deskripsi This extension adds timers to GeoGuessr score bar
Ukuran File 26.67 KB
Jumlah Instalasi 1,580
Versi Saat Ini 1.1.2
Terakhir Diperbarui 2023-11-09
Tanggal Publikasi 2019-08-22
Penilaian 5.00/5 Total 2 Penilaian
Pengembang fabrice404
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/fabrice404/geoguessr-timer
URL Halaman Bantuan https://github.com/fabrice404/geoguessr-timer/issues
Bahasa yang Didukung 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"
    }
}