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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Advent of Code Part 2 Timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक URL | 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": [] } |