Leetcode Analyzer

Add a graph for visualization of number of question per tag and also add a contest history table

Leetcode Analyzer là gì?

Leetcode Analyzer là một tiện ích mở rộng Chrome được phát triển bởi Prashant kumar yadav, và tính năng chính của nó là "Add a graph for visualization of number of question per tag and also add a contest history table".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Leetcode Analyzer

Tải xuống các tệp mở rộng Leetcode Analyzer 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

                        Features:
- simple design
- update on every reload
- Graph visualization with hover effect of showing tag name
- User can check how many question already done on specific tag just by hovering on it
- A Table which shows Contest history with rank and score 
- Faster updation than leetcode real contest time graph

Because Leetcode officially doesn't provide any feature by which user get to know how much question already solve by them on specific topic so by this extension we can have that feature on Leetcode account page and this extension doesn't require any username and password.

More feature coming soon.                    

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

Tên Leetcode Analyzer Leetcode Analyzer
ID dhhhonpdnpmedblhfhppmmpmmadmkkpi
URL Chính Thức https://chromewebstore.google.com/detail/leetcode-analyzer/dhhhonpdnpmedblhfhppmmpmmadmkkpi
Mô tả Add a graph for visualization of number of question per tag and also add a contest history table
Kích Thước Tệp 418 KB
Số Lần Cài Đặt 775
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2022-02-14
Ngày Phát Hành 2022-01-25
Đánh Giá 3.86/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Prashant kumar yadav
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode Analyzer",
    "version": "0.0.6",
    "manifest_version": 3,
    "description": "Add a graph for visualization of number of question per tag and also add a contest history table",
    "icons": {
        "16": "src\/Images\/16X16_LOGO.png",
        "48": "src\/Images\/48X48_LOGO.png",
        "128": "src\/Images\/125X125_LOGO.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "src\/Images\/125X125_LOGO.png"
    },
    "content_scripts": [
        {
            "js": [
                "src\/component\/tagData.js",
                "src\/component\/fetchUserRankAndContest_Details.js",
                "bundle.js"
            ],
            "css": [
                "style.css",
                "styleForTable.css"
            ],
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/leetcode.com\/explore\/*",
                "https:\/\/leetcode.com\/problemset\/*",
                "https:\/\/leetcode.com\/contest\/*",
                "https:\/\/leetcode.com\/discuss\/*",
                "https:\/\/leetcode.com\/store\/*",
                "https:\/\/leetcode.com\/subscribe\/*",
                "https:\/\/leetcode.com\/playground\/*",
                "https:\/\/leetcode.com\/"
            ]
        }
    ]
}