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"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Advent of Code Ranking

ดาวน์โหลดไฟล์ส่วนขยาย Advent of Code Ranking ในรูปแบบ 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. 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 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"
            ]
        }
    ]
}