Leetcode Difficulty Rating
Replace Leetcode problem's difficulty with a more precise contest rating.
Leetcode Difficulty Rating क्या है?
Leetcode Difficulty Rating boenshao द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replace Leetcode problem's difficulty with a more precise contest rating."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Leetcode Difficulty Rating एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Support both "leetcode.com" and "leetcode.cn". The green/yellow/red text color is preserved, so you can still tell the official difficulty. Problems in 1st-62nd weekly contests and problems that did not come from contests don’t have rating data and "N/A" is shown by default. You can change the setting in the extension popup. For more details and source code, please visit: - https://github.com/boenshao/leetcode-difficulty-rating-extension
एक्सटेंशन की मूल जानकारी
नाम | Leetcode Difficulty Rating |
ID | hedijgjklbddpidomdhhngflipnibhca |
आधिकारिक URL | https://chromewebstore.google.com/detail/leetcode-difficulty-ratin/hedijgjklbddpidomdhhngflipnibhca |
विवरण | Replace Leetcode problem's difficulty with a more precise contest rating. |
फ़ाइल का आकार | 12.9 KB |
स्थापना संख्या | 1,000 |
वर्तमान संस्करण | 1.1.6 |
अंतिम अपडेट | 2023-09-13 |
प्रकाशन तिथि | 2023-01-25 |
रेटिंग | 4.11/5 कुल 9 रेटिंग्स |
डेवलपर | boenshao |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/boenshao/leetcode-difficulty-rating-extension |
गोपनीयता नीति पृष्ठ URL | https://github.com/boenshao/leetcode-difficulty-rating-extension/wiki/Privacy-Policy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Leetcode Difficulty Rating", "version": "1.1.6", "description": "Replace Leetcode problem's difficulty with a more precise contest rating.", "permissions": [ "storage" ], "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "js": [ "src\/content.js" ], "matches": [ "*:\/\/leetcode.com\/*", "*:\/\/leetcode.cn\/*" ] } ], "background": { "service_worker": "src\/background.js" }, "action": { "default_popup": "src\/popup.html" } } |