Leetcode Difficulty Rating
Replace Leetcode problem's difficulty with a more precise contest rating.
Vad är Leetcode Difficulty Rating?
Leetcode Difficulty Rating är en Chrome-tillägg utvecklad av boenshao, och dess huvudfunktion är "Replace Leetcode problem's difficulty with a more precise contest rating.".
Tilläggsskärmbilder
Ladda ner Leetcode Difficulty Rating-förlängningens CRX-fil
Ladda ner Leetcode Difficulty Rating-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Leetcode Difficulty Rating |
ID | hedijgjklbddpidomdhhngflipnibhca |
Officiell webbadress | https://chromewebstore.google.com/detail/leetcode-difficulty-ratin/hedijgjklbddpidomdhhngflipnibhca |
Beskrivning | Replace Leetcode problem's difficulty with a more precise contest rating. |
Filstorlek | 12.9 KB |
Antal Installationer | 1,000 |
Aktuell Version | 1.1.6 |
Senast Uppdaterad | 2023-09-13 |
Publiceringsdatum | 2023-01-25 |
Betyg | 4.11/5 Totalt 9 Betyg |
Utvecklare | boenshao |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/boenshao/leetcode-difficulty-rating-extension |
URL till Sekretesspolicy Sidan | https://github.com/boenshao/leetcode-difficulty-rating-extension/wiki/Privacy-Policy |
Stödda Språk | 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" } } |