AtCoder Unit Test

Generate unit tests from AtCoder's problem page.

Cos'è AtCoder Unit Test?

AtCoder Unit Test è un'estensione di Chrome sviluppata da YujiSoftware, e la sua funzione principale è "Generate unit tests from AtCoder's problem page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AtCoder Unit Test

Scarica i file di estensione AtCoder Unit Test in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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)                    

Informazioni di Base sull'Estensione

Nome AtCoder Unit Test AtCoder Unit Test
ID lmahhninbclefepjbcdfbcjnancipfmi
URL Ufficiale https://chromewebstore.google.com/detail/atcoder-unit-test/lmahhninbclefepjbcdfbcjnancipfmi
Descrizione Generate unit tests from AtCoder's problem page.
Dimensione del File 43.53 KB
Conteggio Installazioni 894
Versione Corrente 2.1.5
Ultimo Aggiornamento 2021-11-03
Data di Pubblicazione 2020-05-27
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore YujiSoftware
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/YujiSoftware/ac-unit-test
Lingue Supportate 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
    }
}