Leetcode Difficulty Rating
Replace Leetcode problem's difficulty with a more precise contest rating.
¿Qué es Leetcode Difficulty Rating?
Leetcode Difficulty Rating es una extensión de Chrome desarrollada por boenshao, y su función principal es "Replace Leetcode problem's difficulty with a more precise contest rating.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Leetcode Difficulty Rating
Descarga archivos de extensión Leetcode Difficulty Rating en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Leetcode Difficulty Rating |
ID | hedijgjklbddpidomdhhngflipnibhca |
URL Oficial | https://chromewebstore.google.com/detail/leetcode-difficulty-ratin/hedijgjklbddpidomdhhngflipnibhca |
Descripción | Replace Leetcode problem's difficulty with a more precise contest rating. |
Tamaño del Archivo | 12.9 KB |
Cantidad de Instalaciones | 1,000 |
Versión Actual | 1.1.6 |
Última Actualización | 2023-09-13 |
Fecha de Publicación | 2023-01-25 |
Calificación | 4.11/5 Total de 9 Calificaciones |
Desarrollador | boenshao |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/boenshao/leetcode-difficulty-rating-extension |
URL de la Página de Política de Privacidad | https://github.com/boenshao/leetcode-difficulty-rating-extension/wiki/Privacy-Policy |
Idiomas Soportados | 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" } } |