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ファイルをダウンロード

AtCoder Unit Test拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
    }
}