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

Co to jest Advent of Code Part 2 Timer?

Advent of Code Part 2 Timer to rozszerzenie Chrome opracowane przez Marcela Errazquin, a jego główną funkcją jest „Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Advent of Code Part 2 Timer

Pobierz pliki rozszerzeń Advent of Code Part 2 Timer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Advent of Code Part 2 Timer Advent of Code Part 2 Timer
ID fhmjpoppaplfhgnknpbaaklgdnnimfbn
Oficjalny URL https://chromewebstore.google.com/detail/advent-of-code-part-2-tim/fhmjpoppaplfhgnknpbaaklgdnnimfbn
Opis Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2
Rozmiar pliku 247 KB
Liczba instalacji 356
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2024-02-05
Data Publikacji 2020-12-31
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Marcela Errazquin
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/merrazquin/aoc-part2-timer
Adres URL Strony Pomocy https://github.com/merrazquin/aoc-part2-timer/issues
Obsługiwane Języki 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": []
}