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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}