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.”。
扩展截图
下载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.                     扩展基本信息
| 名称 |   |  
| 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"
    }
}  |  |