Neps Academy Companion

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

What is Neps Academy Companion?

Neps Academy Companion is a Chrome extension developed by https://neps.academy, and its main feature is "This extension allow send test cases from Neps Academy to the VSCode extension CPH.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Neps Academy Companion Extension CRX File

Download Neps Academy Companion extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Neps Academy Companion Neps Academy Companion
ID melmbgodgcahddlphjgjhefmnpcmfage
Official URL https://chromewebstore.google.com/detail/neps-academy-companion/melmbgodgcahddlphjgjhefmnpcmfage
Description This extension allow send test cases from Neps Academy to the VSCode extension CPH.
File Size 20.68 KB
Installation Count 124
Current Version 1.0
Last Updated 2021-04-09
Publish Date 2021-04-07
Developer https://neps.academy
Email [email protected]
Payment Type free
Extension Website https://github.com/ThiNepo/NepsAcademyCompanion
Supported Languages 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"
    }
}