Clip LeetCode

Copy the LeetCode problem to your clipboard.

Что такое Clip LeetCode?

Clip LeetCode - это расширение Chrome, разработанное Edgar Ong, и его основная функция - "Copy the LeetCode problem to your clipboard.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Spend less time switching between your browser and code editor.

Use the Copy button to easily paste the problem, examples, and contraints in your IDE for reference when you're working on your solution.

You can also use the Copy Markdown button for the formatted problem ready to save as markdown.                    

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

Название Clip LeetCode Clip LeetCode
ID cnghimckckgcmhbdokjielmhkmnagdcp
Официальный URL https://chromewebstore.google.com/detail/clip-leetcode/cnghimckckgcmhbdokjielmhkmnagdcp
Описание Copy the LeetCode problem to your clipboard.
Размер файла 7.43 KB
Количество установок 416
Текущая Версия 2.0.4
Последнее Обновление 2023-12-31
Дата публикации 2021-03-17
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Edgar Ong
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/eddgr/clip-leetcode
URL страницы помощи https://github.com/eddgr/clip-leetcode
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Clip LeetCode",
    "version": "2.0.4",
    "description": "Copy the LeetCode problem to your clipboard.",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                "*:\/\/*.leetcode.com\/problems\/*",
                "*:\/\/*.leetcode.com\/contest\/*\/problems\/*"
            ]
        }
    ]
}