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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
    }
}