Neps Academy Companion

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

Co je Neps Academy Companion?

Neps Academy Companion je rozšíření Chrome vyvinuté https://neps.academy, a jeho hlavní funkcí je „This extension allow send test cases from Neps Academy to the VSCode extension CPH.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Neps Academy Companion

Stáhněte si soubory rozšíření Neps Academy Companion ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Neps Academy Companion Neps Academy Companion
ID melmbgodgcahddlphjgjhefmnpcmfage
Oficiální URL https://chromewebstore.google.com/detail/neps-academy-companion/melmbgodgcahddlphjgjhefmnpcmfage
Popis This extension allow send test cases from Neps Academy to the VSCode extension CPH.
Velikost souboru 20.68 KB
Počet instalací 124
Aktuální Verze 1.0
Poslední Aktualizace 2021-04-09
Datum Vydání 2021-04-07
Vývojář https://neps.academy
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/ThiNepo/NepsAcademyCompanion
Podporované Jazyky 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"
    }
}