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 |
| 官方網址 | 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"
}
} | |