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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a graph for visualization of number of question per tag and also add a contest history table"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Leetcode Analyzer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ID | dhhhonpdnpmedblhfhppmmpmmadmkkpi |
आधिकारिक URL | 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\/" ] } ] } |