Neps Academy Companion

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

Neps Academy Companionとは何ですか?

Neps Academy Companionはhttps://neps.academyによって開発されたChromeの拡張機能で、その主な機能は「This extension allow send test cases from Neps Academy to the VSCode extension CPH.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Neps Academy Companion拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}