Advent of Code Ranking
Visualize the ranking over time of a Advent of Code private leaderboard
ما هو Advent of Code Ranking؟
Advent of Code Ranking هو إضافة Chrome تم تطويرها بواسطة Adé Mochtar، والميزة الرئيسية لها هي "Visualize the ranking over time of a Advent of Code private leaderboard".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Advent of Code Ranking
قم بتنزيل ملفات الامتداد Advent of Code Ranking بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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. On AdventOfCode.com you can set up a private leaderboard to compete with your friends, colleagues and peers. This extension visualizes the ranking over time of those private leaderboards. It inserts a chart below the private leaderboard.
معلومات أساسية عن التمديد
الاسم | Advent of Code Ranking |
ID | jbnlafikncgjjhdkmfhokcplgahebmjl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/advent-of-code-ranking/jbnlafikncgjjhdkmfhokcplgahebmjl |
الوصف | Visualize the ranking over time of a Advent of Code private leaderboard |
حجم الملف | 683 KB |
عدد التثبيتات | 1,400 |
النسخة الحالية | 1.5.2 |
آخر تحديث | 2020-12-11 |
تاريخ النشر | 2019-12-13 |
تقييم | 5.00/5 مجموع تقييمات 7 |
المطور | Adé Mochtar |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/amochtar/aoc-ranking |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Advent of Code Ranking", "version": "1.5.2", "description": "Visualize the ranking over time of a Advent of Code private leaderboard", "icons": { "48": "icons\/aoc-ranking-48.png", "96": "icons\/aoc-ranking-96.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/adventofcode.com\/*\/leaderboard\/private\/view\/*" ], "js": [ "ranking.js" ], "css": [ "ranking.css" ] } ] } |