AtCoder Unit Test
Generate unit tests from AtCoder's problem page.
Vad är AtCoder Unit Test?
AtCoder Unit Test är en Chrome-tillägg utvecklad av YujiSoftware, och dess huvudfunktion är "Generate unit tests from AtCoder's problem page.".
Tilläggsskärmbilder
Ladda ner AtCoder Unit Test-förlängningens CRX-fil
Ladda ner AtCoder Unit Test-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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) Grundläggande Information om Tillägg
| Namn | |
| ID | lmahhninbclefepjbcdfbcjnancipfmi |
| Officiell webbadress | https://chromewebstore.google.com/detail/atcoder-unit-test/lmahhninbclefepjbcdfbcjnancipfmi |
| Beskrivning | Generate unit tests from AtCoder's problem page. |
| Filstorlek | 43.53 KB |
| Antal Installationer | 894 |
| Aktuell Version | 2.1.5 |
| Senast Uppdaterad | 2021-11-03 |
| Publiceringsdatum | 2020-05-27 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | YujiSoftware |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/YujiSoftware/ac-unit-test |
| Stödda Språk | 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
}
} | |