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
拡張機能の基本情報
名前 | Leetcode Difficulty Rating |
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 |
Eメール | [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" } } |