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

Qu'est-ce que Advent of Code Part 2 Timer ?

Advent of Code Part 2 Timer est une extension Chrome développée par Marcela Errazquin, et sa fonction principale est "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Advent of Code Part 2 Timer

Téléchargez les fichiers d'extension Advent of Code Part 2 Timer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Advent of Code Part 2 Timer Advent of Code Part 2 Timer
ID fhmjpoppaplfhgnknpbaaklgdnnimfbn
URL Officiel https://chromewebstore.google.com/detail/advent-of-code-part-2-tim/fhmjpoppaplfhgnknpbaaklgdnnimfbn
Description Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2
Taille du Fichier 247 KB
Nombre d'Installations 356
Version Actuelle 1.0.1
Dernière Mise à Jour 2024-02-05
Date de Publication 2020-12-31
Évaluation 5.00/5 Total 3 Évaluations
Développeur Marcela Errazquin
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/merrazquin/aoc-part2-timer
URL de la Page d'Aide https://github.com/merrazquin/aoc-part2-timer/issues
Langues Prises en Charge 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": []
}