Leetcode Difficulty Rating
Replace Leetcode problem's difficulty with a more precise contest rating.
什么是Leetcode Difficulty Rating?
Leetcode Difficulty Rating是由boenshao开发的Chrome扩展程序,该扩展的主要功能是“Replace Leetcode problem's difficulty with a more precise contest rating.”。
扩展截图
下载Leetcode Difficulty Rating扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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"
}
} | |