Neps Academy Companion

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

Neps Academy Companionคืออะไร?

Neps Academy Companion เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://neps.academy และคุณลักษณะหลักของมันคือ "This extension allow send test cases from Neps Academy to the VSCode extension CPH."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Neps Academy Companion

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}