Neps Academy Companion

This extension allow send test cases from Neps Academy to the VSCode extension CPH.

Что такое Neps Academy Companion?

Neps Academy Companion - это расширение Chrome, разработанное https://neps.academy, и его основная функция - "This extension allow send test cases from Neps Academy to the VSCode extension CPH.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Neps Academy Companion

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

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

                        This tool integrates Competitive Programming Helper (CPH) into Neps Academy. Clicking in the extension icon when visiting a programming exercise page at Neps will send all the information to the CPH extension.

CPH will create a file for the exercise, so you can start coding in your favourite language. Additionally, all test cases will be imported as well.

PS: If it does not work please refresh the page or restart your browser.                    

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

Название Neps Academy Companion Neps Academy Companion
ID melmbgodgcahddlphjgjhefmnpcmfage
Официальный URL https://chromewebstore.google.com/detail/neps-academy-companion/melmbgodgcahddlphjgjhefmnpcmfage
Описание This extension allow send test cases from Neps Academy to the VSCode extension CPH.
Размер файла 20.68 KB
Количество установок 124
Текущая Версия 1.0
Последнее Обновление 2021-04-09
Дата публикации 2021-04-07
Разработчик https://neps.academy
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ThiNepo/NepsAcademyCompanion
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Neps Academy Companion",
    "version": "1.0",
    "description": "This extension allow send test cases from Neps Academy to the VSCode extension CPH.",
    "permissions": [
        "http:\/\/localhost\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/neps.academy\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "browser_action": {
        "default-icon": {
            "16": "icons\/16-defaultIcon.png",
            "32": "icons\/32-defaultIcon.png",
            "64": "icons\/64-defaultIcon.png",
            "128": "icons\/128-defaultIcon.png"
        }
    },
    "icons": {
        "16": "icons\/16-defaultIcon.png",
        "32": "icons\/32-defaultIcon.png",
        "64": "icons\/64-defaultIcon.png",
        "128": "icons\/128-defaultIcon.png"
    }
}