GeoGuessr timer

This extension adds timers to GeoGuessr score bar

GeoGuessr timer là gì?

GeoGuessr timer là một tiện ích mở rộng Chrome được phát triển bởi fabrice404, và tính năng chính của nó là "This extension adds timers to GeoGuessr score bar".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GeoGuessr timer

Tải xuống các tệp mở rộng GeoGuessr timer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GeoGuessr timer GeoGuessr timer
ID cpkgpifaafehooacgbigplegdgbnhcbi
URL Chính Thức https://chromewebstore.google.com/detail/geoguessr-timer/cpkgpifaafehooacgbigplegdgbnhcbi
Mô tả This extension adds timers to GeoGuessr score bar
Kích Thước Tệp 26.67 KB
Số Lần Cài Đặt 1,580
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2023-11-09
Ngày Phát Hành 2019-08-22
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển fabrice404
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/fabrice404/geoguessr-timer
URL Trang Trợ Giúp https://github.com/fabrice404/geoguessr-timer/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}