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 |
| 电子邮箱 | [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"
}
}
} | |