Leetcode Difficulty Rating
Replace Leetcode problem's difficulty with a more precise contest rating.
Τι είναι το Leetcode Difficulty Rating;
Το Leetcode Difficulty Rating είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον boenshao, και η κύρια λειτουργία του είναι "Replace Leetcode problem's difficulty with a more precise contest rating.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Leetcode Difficulty Rating
Λήψη αρχείων επέκτασης Leetcode Difficulty Rating σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } } |