Advent of Code Ranking

Visualize the ranking over time of a Advent of Code private leaderboard

Advent of Code Ranking là gì?

Advent of Code Ranking là một tiện ích mở rộng Chrome được phát triển bởi Adé Mochtar, và tính năng chính của nó là "Visualize the ranking over time of a Advent of Code private leaderboard".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Advent of Code Ranking

Tải xuống các tệp mở rộng Advent of Code Ranking dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Advent of Code Ranking Advent of Code Ranking
ID jbnlafikncgjjhdkmfhokcplgahebmjl
URL Chính Thức https://chromewebstore.google.com/detail/advent-of-code-ranking/jbnlafikncgjjhdkmfhokcplgahebmjl
Mô tả Visualize the ranking over time of a Advent of Code private leaderboard
Kích Thước Tệp 683 KB
Số Lần Cài Đặt 1,400
Phiên Bản Hiện Tại 1.5.2
Cập Nhật Lần Cuối 2020-12-11
Ngày Phát Hành 2019-12-13
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Adé Mochtar
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/amochtar/aoc-ranking
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}