LeetCoder Pro
LeetCode Extension
ما هو LeetCoder Pro؟
LeetCoder Pro هو إضافة Chrome تم تطويرها بواسطة lc_chrome_extension، والميزة الرئيسية لها هي "LeetCode Extension".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة LeetCoder Pro
قم بتنزيل ملفات الامتداد LeetCoder Pro بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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"
}
}
} | |