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
什麼是Advent of Code Part 2 Timer?
Advent of Code Part 2 Timer是由Marcela Errazquin開發的Chrome擴展程式,該擴展的主要功能是“Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2”。
擴展截圖
下載Advent of Code Part 2 Timer擴展crx文件
下載Advent of Code Part 2 Timer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Advent of Code Part 2 Timer |
ID | fhmjpoppaplfhgnknpbaaklgdnnimfbn |
官方網址 | https://chromewebstore.google.com/detail/advent-of-code-part-2-tim/fhmjpoppaplfhgnknpbaaklgdnnimfbn |
簡介 | Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2 |
檔案大小 | 247 KB |
安裝次數 | 356 |
目前版本 | 1.0.1 |
更新時間 | 2024-02-05 |
上架時間 | 2020-12-31 |
評分 | 5.00/5 共 3 次評分 |
開發者 | Marcela Errazquin |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/merrazquin/aoc-part2-timer |
說明頁面URL | https://github.com/merrazquin/aoc-part2-timer/issues |
支援的語言 | 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": [] } |