LeetCoder Pro
LeetCode Extension
LeetCoder Proคืออะไร?
LeetCoder Pro เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lc_chrome_extension และคุณลักษณะหลักของมันคือ "LeetCode Extension"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LeetCoder Pro
ดาวน์โหลดไฟล์ส่วนขยาย 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"
}
}
} | |