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란 무엇입니까?

Advent of Code Part 2 Timer은(는) Marcela Errazquin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Advent of Code Part 2 Timer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Advent of Code Part 2 Timer Advent of Code Part 2 Timer
ID fhmjpoppaplfhgnknpbaaklgdnnimfbn
공식 URL https://chromewebstore.google.com/detail/advent-of-code-part-2-tim/fhmjpoppaplfhgnknpbaaklgdnnimfbn
설명 Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2
파일 크기 247 KB
설치 횟수 356
현재 버전 1.0.1
최근 업데이트 2024-02-05
출시 날짜 2020-12-31
평점 5.00/5 총 3 개의 평점
개발자 Marcela Errazquin
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/merrazquin/aoc-part2-timer
도움말 페이지 URL https://github.com/merrazquin/aoc-part2-timer/issues
지원되는 언어 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": []
}