LeetCoder Pro
LeetCode Extension
LeetCoder Proとは何ですか?
LeetCoder Proはlc_chrome_extensionによって開発されたChromeの拡張機能で、その主な機能は「LeetCode Extension」です。
拡張機能のスクリーンショット
LeetCoder Pro拡張機能のCRXファイルをダウンロード
LeetCoder Pro拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A simple LeetCode browser extension that provides software engineer interview prepers key problem submission data points. 🤗 💯
Note: In order to show data you must have submitted solutions before. To enable this extension, please log into (or register) your LeetCode account! Data refresh typically takes 1~2 seconds.
Statistics definition
Session(# of Times Done): Two submissions count as two different sessions if they are submitted more than one day apart.
Acceptance Rate(personal): Ratio of accepted submissions to all submissions. 拡張機能の基本情報
| 名前 | |
| ID | nkjhlfmlgoadihojkbchmjebljpgiopb |
| 公式URL | https://chromewebstore.google.com/detail/leetcoder-pro/nkjhlfmlgoadihojkbchmjebljpgiopb |
| 説明 | LeetCode Extension |
| ファイルサイズ | 148 KB |
| インストール数 | 30 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2022-01-24 |
| 公開日 | 2022-01-24 |
| 開発者 | lc_chrome_extension |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/colinshenc/LeetCoder-Pro |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "LeetCoder Pro",
"description": "LeetCode Extension",
"version": "1.0",
"manifest_version": 3,
"action": {
"default_popup": "popup.html",
"default_icon": "\/images\/logo6.png"
},
"permissions": [
"cookies",
"storage"
],
"host_permissions": [
"*:\/\/*.leetcode.com\/"
],
"background": {
"service_worker": "utils.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.leetcode.com\/problemset\/*"
],
"js": [
"submission.js"
]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "MacCtrl+Shift+L"
},
"description": "Open popup.html"
}
}
} | |