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.”。
扩展截图
下载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) 扩展基本信息
| 名称 | |
| 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
}
} | |