Leetcode Difficulty Rating
Replace Leetcode problem's difficulty with a more precise contest rating.
Wat is Leetcode Difficulty Rating?
Leetcode Difficulty Rating is een Chrome-extensie ontwikkeld door boenshao, en de belangrijkste functie is "Replace Leetcode problem's difficulty with a more precise contest rating.".
Extensie Screenshots
Download het CRX-bestand van de extensie Leetcode Difficulty Rating
Download Leetcode Difficulty Rating-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Leetcode Difficulty Rating |
ID | hedijgjklbddpidomdhhngflipnibhca |
Officiële URL | https://chromewebstore.google.com/detail/leetcode-difficulty-ratin/hedijgjklbddpidomdhhngflipnibhca |
Beschrijving | Replace Leetcode problem's difficulty with a more precise contest rating. |
Bestandsgrootte | 12.9 KB |
Aantal Installaties | 1,000 |
Huidige Versie | 1.1.6 |
Laatst Bijgewerkt | 2023-09-13 |
Publicatiedatum | 2023-01-25 |
Beoordeling | 4.11/5 Totaal 9 Beoordelingen |
Ontwikkelaar | boenshao |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/boenshao/leetcode-difficulty-rating-extension |
URL van de Privacybeleid Pagina | https://github.com/boenshao/leetcode-difficulty-rating-extension/wiki/Privacy-Policy |
Ondersteunde Talen | 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" } } |