LeetCode Python Assistant
Makes your Python development more efficient on LeetCode.
Что такое LeetCode Python Assistant?
LeetCode Python Assistant - это расширение Chrome, разработанное fwuensche, и его основная функция - "Makes your Python development more efficient on LeetCode.".
Снимки экрана расширения
Скачать файл CRX расширения LeetCode Python Assistant
Скачайте файлы расширений LeetCode Python Assistant в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension provides the user with productivity tools, such as a button for YouTube solutions, automatically filtering Python discussions, sorting them by top rated, and more.
That's pretty much it (so far), but contributions are more than welcome at https://github.com/fwuensche/leetcode-chrome-extension Основная информация о расширении
| Название | |
| ID | ancmjhdhodjnghpopbhlihpggbgommgk |
| Официальный URL | https://chrome.google.com/webstore/detail/leetcode-python-assistant/ancmjhdhodjnghpopbhlihpggbgommgk |
| Описание | Makes your Python development more efficient on LeetCode. |
| Размер файла | 213 KB |
| Количество установок | 213 |
| Текущая Версия | 0.1.0 |
| Последнее Обновление | 2018-09-18 |
| Дата публикации | 2018-09-18 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | fwuensche |
| Тип оплаты | free |
| Официальный сайт расширения | http://github.com/fwuensche/leetcode-chrome-extension |
| URL страницы помощи | http://github.com/fwuensche/leetcode-chrome-extension |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "LeetCode Python Assistant",
"description": "Makes your Python development more efficient on LeetCode.",
"version": "0.1.0",
"browser_action": {
"default_popup": "search.html",
"default_icon": "img\/lc-logo.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/leetcode.com\/problems\/*"
],
"js": [
"js\/vendor\/jquery.js",
"js\/problems.js"
]
}
],
"icons": {
"144": "img\/icon_144.png"
},
"manifest_version": 2
} | |