Advent of Code Ranking

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

Advent of Code Ranking क्या है?

Advent of Code Ranking Adé Mochtar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Visualize the ranking over time of a Advent of Code private leaderboard"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Advent of Code Ranking एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
            ]
        }
    ]
}