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"
}
}
} | |