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

Hvad er Advent of Code Part 2 Timer?

Advent of Code Part 2 Timer er en Chrome-udvidelse udviklet af Marcela Errazquin, og dens hovedfunktion er "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Advent of Code Part 2 Timer-udvidelses-CRX-fil

Download Advent of Code Part 2 Timer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Advent of Code Part 2 Timer Advent of Code Part 2 Timer
ID fhmjpoppaplfhgnknpbaaklgdnnimfbn
Officiel URL https://chromewebstore.google.com/detail/advent-of-code-part-2-tim/fhmjpoppaplfhgnknpbaaklgdnnimfbn
Beskrivelse Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2
Filstørrelse 247 KB
Antal Installationer 356
Nuværende Version 1.0.1
Senest Opdateret 2024-02-05
Udgivelsesdato 2020-12-31
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler Marcela Errazquin
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/merrazquin/aoc-part2-timer
Hjælpeside-URL https://github.com/merrazquin/aoc-part2-timer/issues
Understøttede Sprog 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": []
}