Advent of Code Part 2 Timer

Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2

Advent of Code Part 2 Timer là gì?

Advent of Code Part 2 Timer là một tiện ích mở rộng Chrome được phát triển bởi Marcela Errazquin, và tính năng chính của nó là "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2".

Ả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 Advent of Code Part 2 Timer

Tải xuống các tệp mở rộng Advent of Code Part 2 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

                        Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. 

This inserts a new column on the personal stats page: https://adventofcode.com//self

With version 0.0.3, this extension will also attempt to track the first time you open a puzzle and offset your completion times based off of that start time.

Note: You must generate a private leaderboard in order for the extension to work. See: https://adventofcode.com//leaderboard/private                    

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

Tên Advent of Code Part 2 Timer Advent of Code Part 2 Timer
ID fhmjpoppaplfhgnknpbaaklgdnnimfbn
URL Chính Thức https://chromewebstore.google.com/detail/advent-of-code-part-2-tim/fhmjpoppaplfhgnknpbaaklgdnnimfbn
Mô tả Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2
Kích Thước Tệp 247 KB
Số Lần Cài Đặt 356
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2024-02-05
Ngày Phát Hành 2020-12-31
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Marcela Errazquin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/merrazquin/aoc-part2-timer
URL Trang Trợ Giúp https://github.com/merrazquin/aoc-part2-timer/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Advent of Code Part 2 Timer",
    "version": "1.0.1",
    "description": "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2",
    "icons": {
        "48": "icons\/aoc-timer-48.png",
        "96": "icons\/aoc-timer-96.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/adventofcode.com\/*\/leaderboard\/self"
            ],
            "js": [
                "stats.js"
            ]
        },
        {
            "matches": [
                "https:\/\/adventofcode.com\/*\/day\/*"
            ],
            "js": [
                "tracker.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_security_policy": []
}