Leetcode Analyzer

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

什麼是Leetcode Analyzer?

Leetcode Analyzer是由Prashant kumar yadav開發的Chrome擴展程式,該擴展的主要功能是“Add a graph for visualization of number of question per tag and also add a contest history table”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Leetcode Analyzer擴展crx文件

下載Leetcode Analyzer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Leetcode Analyzer Leetcode Analyzer
ID dhhhonpdnpmedblhfhppmmpmmadmkkpi
官方網址 https://chromewebstore.google.com/detail/leetcode-analyzer/dhhhonpdnpmedblhfhppmmpmmadmkkpi
簡介 Add a graph for visualization of number of question per tag and also add a contest history table
檔案大小 418 KB
安裝次數 775
目前版本 0.0.6
更新時間 2022-02-14
上架時間 2022-01-25
評分 3.86/5 共 14 次評分
開發者 Prashant kumar yadav
電子郵箱 [email protected]
付費類型 free
支援的語言 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\/"
            ]
        }
    ]
}