Neps Academy Companion

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

Neps Academy Companion là gì?

Neps Academy Companion là một tiện ích mở rộng Chrome được phát triển bởi https://neps.academy, và tính năng chính của nó là "This extension allow send test cases from Neps Academy to the VSCode extension CPH.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Neps Academy Companion

Tải xuống các tệp mở rộng Neps Academy Companion dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Neps Academy Companion Neps Academy Companion
ID melmbgodgcahddlphjgjhefmnpcmfage
URL Chính Thức https://chromewebstore.google.com/detail/neps-academy-companion/melmbgodgcahddlphjgjhefmnpcmfage
Mô tả This extension allow send test cases from Neps Academy to the VSCode extension CPH.
Kích Thước Tệp 20.68 KB
Số Lần Cài Đặt 124
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-04-09
Ngày Phát Hành 2021-04-07
Nhà Phát Triển https://neps.academy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ThiNepo/NepsAcademyCompanion
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}