AtCoder Unit Test
Generate unit tests from AtCoder's problem page.
Apa itu AtCoder Unit Test?
AtCoder Unit Test adalah ekstensi Chrome yang dikembangkan oleh YujiSoftware, dan fitur utamanya adalah "Generate unit tests from AtCoder's problem page.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi AtCoder Unit Test
Unduh file ekstensi AtCoder Unit Test dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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)
Informasi Dasar Ekstensi
Nama | AtCoder Unit Test |
ID | lmahhninbclefepjbcdfbcjnancipfmi |
URL Resmi | https://chromewebstore.google.com/detail/atcoder-unit-test/lmahhninbclefepjbcdfbcjnancipfmi |
Deskripsi | Generate unit tests from AtCoder's problem page. |
Ukuran File | 43.53 KB |
Jumlah Instalasi | 894 |
Versi Saat Ini | 2.1.5 |
Terakhir Diperbarui | 2021-11-03 |
Tanggal Publikasi | 2020-05-27 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | YujiSoftware |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/YujiSoftware/ac-unit-test |
Bahasa yang Didukung | 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 } } |