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 |
| 官方網址 | 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"
}
} | |