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
O que é Advent of Code Part 2 Timer?
Advent of Code Part 2 Timer é uma extensão do Chrome desenvolvida por Marcela Errazquin, e sua principal característica é "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Advent of Code Part 2 Timer
Baixe arquivos de extensão Advent of Code Part 2 Timer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Advent of Code Part 2 Timer |
ID | fhmjpoppaplfhgnknpbaaklgdnnimfbn |
URL Oficial | https://chromewebstore.google.com/detail/advent-of-code-part-2-tim/fhmjpoppaplfhgnknpbaaklgdnnimfbn |
Descrição | Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2 |
Tamanho do Arquivo | 247 KB |
Contagem de Instalações | 356 |
Versão Atual | 1.0.1 |
Última Atualização | 2024-02-05 |
Data de Publicação | 2020-12-31 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Marcela Errazquin |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/merrazquin/aoc-part2-timer |
URL da Página de Ajuda | https://github.com/merrazquin/aoc-part2-timer/issues |
Idiomas Suportados | 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": [] } |