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

Wat is Advent of Code Part 2 Timer?

Advent of Code Part 2 Timer is een Chrome-extensie ontwikkeld door Marcela Errazquin, en de belangrijkste functie is "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Advent of Code Part 2 Timer

Download Advent of Code Part 2 Timer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Advent of Code Part 2 Timer Advent of Code Part 2 Timer
ID fhmjpoppaplfhgnknpbaaklgdnnimfbn
Officiële URL https://chromewebstore.google.com/detail/advent-of-code-part-2-tim/fhmjpoppaplfhgnknpbaaklgdnnimfbn
Beschrijving Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2
Bestandsgrootte 247 KB
Aantal Installaties 356
Huidige Versie 1.0.1
Laatst Bijgewerkt 2024-02-05
Publicatiedatum 2020-12-31
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Marcela Errazquin
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/merrazquin/aoc-part2-timer
Help Pagina-URL https://github.com/merrazquin/aoc-part2-timer/issues
Ondersteunde Talen 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": []
}