AtCoder Unit Test

Generate unit tests from AtCoder's problem page.

AtCoder Unit Test란 무엇입니까?

AtCoder Unit Test은(는) YujiSoftware에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate unit tests from AtCoder's problem page."입니다.

확장 프로그램 스크린샷

screenshot

AtCoder Unit Test 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This add-on will generate unit tests from AtCoder's problem page.
1. Open AtCoder problem page
2. Right click → Click "Generate unit test"

This will copy the unit test. After that, please do "paste" with an editor.

Supported languages: Java (JUnit), C# (MS Test), Python3 (unittest)                    

확장 프로그램 기본 정보

이름 AtCoder Unit Test AtCoder Unit Test
ID lmahhninbclefepjbcdfbcjnancipfmi
공식 URL https://chromewebstore.google.com/detail/atcoder-unit-test/lmahhninbclefepjbcdfbcjnancipfmi
설명 Generate unit tests from AtCoder's problem page.
파일 크기 43.53 KB
설치 횟수 894
현재 버전 2.1.5
최근 업데이트 2021-11-03
출시 날짜 2020-05-27
평점 5.00/5 총 1 개의 평점
개발자 YujiSoftware
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/YujiSoftware/ac-unit-test
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AtCoder Unit Test",
    "version": "2.1.5",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "applications": {
        "gecko": {
            "id": "@acunittest"
        }
    },
    "permissions": [
        "*:\/\/*.contest.atcoder.jp\/tasks\/*",
        "*:\/\/atcoder.jp\/contests\/*\/tasks\/*",
        "contextMenus",
        "clipboardWrite",
        "storage"
    ],
    "icons": {
        "48": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.contest.atcoder.jp\/tasks\/*",
                "*:\/\/atcoder.jp\/contests\/*\/tasks\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}