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
Was ist Advent of Code Part 2 Timer?
Advent of Code Part 2 Timer ist eine Chrome-Erweiterung, die von Marcela Errazquin entwickelt wurde, und ihr Hauptmerkmal ist "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2".
Erweiterungsscreenshots
Advent of Code Part 2 Timer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Advent of Code Part 2 Timer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Advent of Code Part 2 Timer |
ID | fhmjpoppaplfhgnknpbaaklgdnnimfbn |
Offizielle URL | https://chromewebstore.google.com/detail/advent-of-code-part-2-tim/fhmjpoppaplfhgnknpbaaklgdnnimfbn |
Beschreibung | Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2 |
Dateigröße | 247 KB |
Installationsanzahl | 356 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2024-02-05 |
Veröffentlichungsdatum | 2020-12-31 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Marcela Errazquin |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/merrazquin/aoc-part2-timer |
Hilfeseite URL | https://github.com/merrazquin/aoc-part2-timer/issues |
Unterstützte Sprachen | 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": [] } |