LeetCode/LintCode Helper

This extension is a useful helper when you code at LeetCode/LintCode. It will automatically search solutions for your problems

Что такое LeetCode/LintCode Helper?

LeetCode/LintCode Helper - это расширение Chrome, разработанное Jofen, и его основная функция - "This extension is a useful helper when you code at LeetCode/LintCode. It will automatically search solutions for your problems".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения LeetCode/LintCode Helper

Скачайте файлы расширений LeetCode/LintCode Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        A handy tool to easy your life when coding on https://www.leetcode.com or http://www.lintcode.com.
- Go to problem solution by a simple click of button.
- Click the button to search for additional solutions if no auto solution found or you are not satisfied with the provided solution.                    

Основная информация о расширении

Название LeetCode/LintCode Helper LeetCode/LintCode Helper
ID alocjpaahhlgdhhbldfidhlclcipifbo
Официальный URL https://chromewebstore.google.com/detail/leetcodelintcode-helper/alocjpaahhlgdhhbldfidhlclcipifbo
Описание This extension is a useful helper when you code at LeetCode/LintCode. It will automatically search solutions for your problems
Размер файла 37.45 KB
Количество установок 287
Текущая Версия 1.2
Последнее Обновление 2022-09-16
Дата публикации 2018-04-13
Разработчик Jofen
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetCode\/LintCode Helper",
    "short_name": "LC Helper",
    "description": "This extension is a useful helper when you code at LeetCode\/LintCode. It will automatically search solutions for your problems",
    "version": "1.2",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "LC.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent",
        "http:\/\/www.jiuzhang.com\/*",
        "https:\/\/www.jiuzhang.com\/*"
    ]
}